fromGraphQLListChatItemsCursorNullableToDartListChatItemsCursorNullable function

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

Implementation

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