fromGraphQLListNullableUserBioNullableToDartListNullableUserBioNullable function

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

Implementation

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