fromGraphQLListNullableUserNameNullableToDartListNullableUserNameNullable function
Implementation
List<UserName?>?
fromGraphQLListNullableUserNameNullableToDartListNullableUserNameNullable(
List<Object?>? v,
) =>
v
?.map(
(e) =>
fromGraphQLUserNameNullableToDartUserNameNullable(e as String?),
)
.toList();