LedgerCheckbox constructor

const LedgerCheckbox({
  1. Key? key,
  2. required bool checked,
  3. required String trackLabel,
  4. required String semanticsLabel,
  5. double size = 20.0,
  6. Color? activeColor,
  7. Color? borderColor,
  8. Color? checkColor,
  9. ValueChanged<bool>? onChanged,
})

Implementation

const LedgerCheckbox({
  super.key,
  required this.checked,
  required this.trackLabel,
  required this.semanticsLabel,
  this.size = 20.0,
  this.activeColor,
  this.borderColor,
  this.checkColor,
  this.onChanged,
}) : _type = _LedgerCheckboxType._checkbox;