fromGraphQLListNullableFavoriteChatContactsCursorNullableToDartListNullableFavoriteChatContactsCursorNullable function

List<FavoriteChatContactsCursor?>? fromGraphQLListNullableFavoriteChatContactsCursorNullableToDartListNullableFavoriteChatContactsCursorNullable(
  1. List<Object?>? v
)

Implementation

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