PickerAnyAdapter<T> constructor

PickerAnyAdapter<T>({
  1. String title = '',
  2. Image? icon,
  3. IconButton? btn,
  4. List<T> items = const [],
  5. int maxLevel = 0,
  6. ShowPickExtendsUI levelExtendsUI = ShowPickExtendsUI.extendsNone,
  7. Text? extendLabel,
  8. String placeHolderText = '子分类',
})

Implementation

PickerAnyAdapter(
    {this.title = '',
    this.icon,
    this.btn,
    this.items = const [],
    this.maxLevel = 0,
    this.levelExtendsUI = ShowPickExtendsUI.extendsNone,
    this.extendLabel,
    this.placeHolderText = '子分类'});