fromGraphQLListChatItemsCursorToDartListChatItemsCursor function

List<ChatItemsCursor> fromGraphQLListChatItemsCursorToDartListChatItemsCursor(
  1. List<Object?> v
)

Implementation

List<ChatItemsCursor> fromGraphQLListChatItemsCursorToDartListChatItemsCursor(
  List<Object?> v,
) =>
    v
        .map(
          (e) => fromGraphQLChatItemsCursorToDartChatItemsCursor(e as String),
        )
        .toList();