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