fromGraphQLListNullableUserBioNullableToDartListNullableUserBioNullable function
Implementation
List<UserBio?>?
fromGraphQLListNullableUserBioNullableToDartListNullableUserBioNullable(
List<Object?>? v,
) =>
v
?.map(
(e) => fromGraphQLUserBioNullableToDartUserBioNullable(e as String?),
)
.toList();