PickerEntity constructor

PickerEntity({
  1. String? uniqueId,
  2. String? key,
  3. String? value,
  4. String? defaultValue,
  5. String name = '',
  6. List<PickerEntity> children = const [],
  7. bool isSelected = false,
  8. Map? extMap,
  9. String? type,
  10. int maxSelectedCount = SelectionConstant.maxSelectCount,
})

Implementation

PickerEntity(
    {this.uniqueId,
    this.key,
    this.value,
    this.defaultValue,
    this.name = '',
    this.children = const [],
    this.isSelected = false,
    this.extMap,
    this.type,
    this.maxSelectedCount = SelectionConstant.maxSelectCount}) {
  filterType = parserFilterTypeWithType(type);
}