MultiSelectorEntity constructor

MultiSelectorEntity({
  1. String? id,
  2. String? name,
  3. bool isSelected = false,
  4. dynamic extra,
  5. List<MultiSelectorEntity>? children,
})

Implementation

MultiSelectorEntity({
  this.id,
  this.name,
  this.isSelected = false,
  this.extra,
  this.children,
});