fromDartListOperationNumNullableToGraphQLListOperationNumNullable function

List<int?> fromDartListOperationNumNullableToGraphQLListOperationNumNullable(
  1. List<OperationNum?> v
)

Implementation

List<int?> fromDartListOperationNumNullableToGraphQLListOperationNumNullable(
  List<OperationNum?> v,
) => v
    .map((e) => fromDartOperationNumNullableToGraphQLOperationNumNullable(e))
    .toList();