Field constructor

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

Implementation

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