EnumProperty constructor

EnumProperty({
  1. required String name,
  2. required ItemType type,
  3. required bool isOptional,
  4. String? defaultValue,
  5. bool isJsonvalue = false,
})

Implementation

EnumProperty({
  required this.name,
  required this.type,
  required this.isOptional,
  this.defaultValue,
  this.isJsonvalue = false,
});