fromDartListUserBioNullableToGraphQLListUserBioNullable function
Implementation
List<String?> fromDartListUserBioNullableToGraphQLListUserBioNullable(
List<UserBio?> v,
) => v.map((e) => fromDartUserBioNullableToGraphQLUserBioNullable(e)).toList();