fromGraphQLListUserBioNullableToDartListUserBioNullable function

List<UserBio?> fromGraphQLListUserBioNullableToDartListUserBioNullable(
  1. List<Object?> v
)

Implementation

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