fromDartListNullableFavoriteChatContactsCursorNullableToGraphQLListNullableFavoriteChatContactsCursorNullable function
Implementation
List<String?>?
fromDartListNullableFavoriteChatContactsCursorNullableToGraphQLListNullableFavoriteChatContactsCursorNullable(
List<FavoriteChatContactsCursor?>? v,
) =>
v
?.map(
(e) =>
fromDartFavoriteChatContactsCursorNullableToGraphQLFavoriteChatContactsCursorNullable(
e,
),
)
.toList();