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