fromGraphQLListFavoriteChatContactsCursorNullableToDartListFavoriteChatContactsCursorNullable function

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

Implementation

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