NCheckbox constructor
NCheckbox({})
Implementation
NCheckbox(
{Key? key,
this.name,
this.value: false,
this.shape: 'round',
this.text,
this.disabled: false,
this.readonly: false,
this.iconSize: Style.checkboxSize,
this.checkedColor: Style.checkboxCheckedIconColor,
this.onChange})
: assert(["round", "square"].indexOf(shape) > -1,
"shape must be round, or square"),
super(key: key);