fromGraphQLListUserNumNullableToDartListUserNumNullable function

List<UserNum?> fromGraphQLListUserNumNullableToDartListUserNumNullable(
  1. List<Object?> v
)

Implementation

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