ArcaneCheckbox constructor

const ArcaneCheckbox({
  1. Key? key,
  2. required ArcaneCheckboxState state,
  3. required ValueChanged<ArcaneCheckboxState>? onChanged,
  4. Widget? leading,
  5. Widget? trailing,
  6. bool tristate = false,
})

Implementation

const ArcaneCheckbox({
  super.key,
  required this.state,
  required this.onChanged,
  this.leading,
  this.trailing,
  this.tristate = false,
});