ButtonSelectDrawer<T> constructor
const
ButtonSelectDrawer<T> ({
- Key? key,
- required String title,
- required List<
T> listData, - IsSelected<
T> ? isSelected, - TitleTransformer<
T> ? titleTransformer, - IsDisable<
T> ? isDisable, - RefreshCallback? onRefresh,
- 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);