SchemaArg constructor
const
SchemaArg({
- required String name,
- String? comment,
- required bool isNullable,
- required bool isRequired,
- required List<
SchemaType> inputTypes, - 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,
});