fromGraphQLListUserNumNullableToDartListUserNumNullable function
Implementation
List<UserNum?> fromGraphQLListUserNumNullableToDartListUserNumNullable(
List<Object?> v,
) =>
v
.map(
(e) => fromGraphQLUserNumNullableToDartUserNumNullable(e as String?),
)
.toList();