Field constructor

const Field({
  1. required String name,
  2. String import = '',
  3. DefaultValue? defaultValue,
  4. bool primary = false,
  5. bool basic = false,
  6. bool recycle = false,
})

Implementation

const Field({
  required this.name,
  this.import = '',
  this.defaultValue,
  this.primary = false,
  this.basic = false,
  this.recycle = false,
});