fromGraphQLListNullableUserNumNullableToDartListNullableUserNumNullable function

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

Implementation

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