AttributeEnum constructor

AttributeEnum({
  1. required String key,
  2. required String type,
  3. required String status,
  4. required String error,
  5. required bool xrequired,
  6. bool? array,
  7. required List elements,
  8. required String format,
  9. String? xdefault,
})

Implementation

AttributeEnum({
  required this.key,
  required this.type,
  required this.status,
  required this.error,
  required this.xrequired,
  this.array,
  required this.elements,
  required this.format,
  this.xdefault,
});