Field constructor

Field({
  1. Map<String, Object?>? additionalDetails,
  2. String? dataType,
  3. Object? defaultValue,
  4. String? description,
  5. String? field,
  6. bool? key,
  7. bool? nullable,
  8. bool? readonly,
})

Implementation

Field({
  this.additionalDetails,
  this.dataType,
  this.defaultValue,
  this.description,
  this.field,
  this.key,
  this.nullable,
  this.readonly,
});