SingleSelectEnumSchema<T> constructor

SingleSelectEnumSchema<T>({
  1. required String type,
  2. String? title,
  3. String? description,
  4. T? defaultValue,
})

Implementation

SingleSelectEnumSchema({
  required super.type,
  super.title,
  super.description,
  super.defaultValue,
});