MultiSelectorEntity constructor
      
      MultiSelectorEntity({ 
    
    
- String? id,
- String? name,
- bool isSelected = false,
- dynamic extra,
- List<MultiSelectorEntity> ? children,
Implementation
MultiSelectorEntity({
  this.id,
  this.name,
  this.isSelected = false,
  this.extra,
  this.children,
});