fromGraphQLListFavoriteChatContactsCursorNullableToDartListFavoriteChatContactsCursorNullable function
Implementation
List<FavoriteChatContactsCursor?>
fromGraphQLListFavoriteChatContactsCursorNullableToDartListFavoriteChatContactsCursorNullable(
List<Object?> v,
) =>
v
.map(
(e) =>
fromGraphQLFavoriteChatContactsCursorNullableToDartFavoriteChatContactsCursorNullable(
e as String?,
),
)
.toList();