GRawCheckbox constructor

const GRawCheckbox({
  1. Key? key,
  2. required bool? value,
  3. required ValueChanged<bool?>? onChange,
  4. bool tristate = false,
  5. Widget? child,
})

Implementation

const GRawCheckbox(
    {Key? key,
    required this.value,
    required this.onChange,
    this.tristate = false,
    this.child})
    : super(key: key);