NiceSchemaField constructor

const NiceSchemaField({
  1. required String name,
  2. required String type,
  3. bool required = false,
  4. dynamic defaultValue,
  5. String? description,
})

Implementation

const NiceSchemaField({
  required this.name,
  required this.type,
  this.required = false,
  this.defaultValue,
  this.description,
});