SchemaArg constructor

const SchemaArg({
  1. required String name,
  2. String? comment,
  3. required bool isNullable,
  4. required bool isRequired,
  5. required List<SchemaType> inputTypes,
  6. Deprecation? deprecation,
})

Create a new schema arg.

Implementation

const SchemaArg({
  required this.name,
  this.comment,
  required this.isNullable,
  required this.isRequired,
  required this.inputTypes,
  this.deprecation,
});