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