Mode constructor

Mode({
  1. int? id,
  2. String? name,
  3. String? label,
  4. String? classNames,
  5. String? type,
  6. String? description,
  7. bool? defaultSelected,
  8. String? selectType,
  9. String? componentKey,
  10. String? componentType,
  11. String? code,
  12. bool? enabled,
  13. bool? exclusive,
})

Implementation

Mode(
    {this.id,
      this.name,
      this.label,
      this.classNames,
      this.type,
      this.description,
      this.defaultSelected,
      this.selectType,
      this.componentKey,
      this.componentType,
      this.code,
      this.enabled,
      this.exclusive});