fromDartListNullableOperationNumNullableToGraphQLListNullableOperationNumNullable function

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

Implementation

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