FastButtonGroup<T> constructor
const
FastButtonGroup<T> ({})
FastButtonGroup
example:
FastButtonGroup<String>(
callback: (v) {},
values: const ['Test 1', 'Test 2', 'Test 3', 'Test 4'],
initial: const [],
),
Implementation
const FastButtonGroup({
super.key,
required this.callback,
required this.values,
required this.initial,
this.multiple = true,
this.itemBuilder,
this.updateSelectionOnInitialChange = true,
this.allowEmpty = true,
});