fromGraphQLListRecentChatsCursorNullableToDartListRecentChatsCursorNullable function

List<RecentChatsCursor?> fromGraphQLListRecentChatsCursorNullableToDartListRecentChatsCursorNullable(
  1. List<Object?> v
)

Implementation

List<RecentChatsCursor?>
fromGraphQLListRecentChatsCursorNullableToDartListRecentChatsCursorNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLRecentChatsCursorNullableToDartRecentChatsCursorNullable(
            e as String?,
          ),
    )
    .toList();