EnumSchema constructor

const EnumSchema({
  1. required List<String> values,
  2. List<String>? enumNames,
  3. bool multiSelect = false,
  4. String? title,
  5. String? description,
  6. Object? defaultValue,
})

Implementation

const EnumSchema({
  required this.values,
  this.enumNames,
  this.multiSelect = false,
  this.title,
  this.description,
  this.defaultValue,
});