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