TdCheckbox<T> constructor
const
TdCheckbox<T> ({
- Key? key,
- bool? initialChecked,
- required TdCheckboxChangedCallback<
T> onChanged, - T? value,
- bool disabled = false,
- bool block = true,
- EdgeInsetsGeometry? padding,
- required Widget child,
Implementation
const TdCheckbox({
super.key,
this.initialChecked,
required this.onChanged,
this.value,
this.disabled = false,
this.block = true,
this.padding,
required this.child,
});