Field constructor

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

Implementation

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