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