SchemaField constructor

SchemaField({
  1. String id = "",
  2. String name = "",
  3. String type = "",
  4. bool system = false,
  5. bool required = false,
  6. bool presentable = false,
  7. Map<String, dynamic> options = const {},
})

Implementation

SchemaField({
  this.id = "",
  this.name = "",
  this.type = "",
  this.system = false,
  this.required = false,
  this.presentable = false,
  this.options = const {},
});