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