ButtonSelectDrawer<T> constructor

const ButtonSelectDrawer<T>({
  1. Key? key,
  2. required String title,
  3. required List<T> listData,
  4. IsSelected<T>? isSelected,
  5. TitleTransformer<T>? titleTransformer,
  6. IsDisable<T>? isDisable,
  7. RefreshCallback? onRefresh,
  8. ValueChange<T>? onValueChange,
})

Implementation

const ButtonSelectDrawer({
  Key? key,
  required this.title,
  required this.listData,
  this.isSelected,
  this.titleTransformer,
  this.isDisable,
  this.onRefresh,
  this.onValueChange,
}) : super(key: key);