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