checkBox abstract method
Widget
checkBox(
{ - String? label,
- bool selected = false,
- void onStateChange(
- bool
),
- bool isIndeterminate = false,
- ItemSize size = ItemSize.medium,
- bool emphasis = false,
- bool disabled = false,
- bool isReadOnly = false,
- bool isError = false,
})
Implementation
Widget checkBox({
String? label,
bool selected = false,
void Function(bool) onStateChange,
bool isIndeterminate = false,
ItemSize size = ItemSize.medium,
bool emphasis = false,
bool disabled = false,
bool isReadOnly = false,
bool isError = false,
});