Mode constructor

Mode({
  1. int? id,
  2. String? name,
  3. String? label,
  4. String? classNames,
  5. dynamic type,
  6. String? description,
  7. bool? defaultSelected,
  8. String? selectType,
  9. dynamic componentKey,
  10. dynamic 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});