FieldDefinition constructor

const FieldDefinition({
  1. required String name,
  2. required String type,
  3. required bool isList,
  4. required bool isNullable,
  5. required List<FieldAttribute> attributes,
  6. int? line,
  7. int? column,
})

Creates a field definition.

Implementation

const FieldDefinition({
  required this.name,
  required this.type,
  required this.isList,
  required this.isNullable,
  required this.attributes,
  this.line,
  this.column,
});