JuiCheckBox constructor

const JuiCheckBox({
  1. Key? key,
  2. required ValueNotifier<bool> flag,
  3. required JuiCheckBoxType type,
  4. bool isDisabled = false,
  5. ValueChanged<bool>? onChanged,
})

Implementation

const JuiCheckBox({
  Key? key,
  required this.flag,
  required this.type,
  this.isDisabled = false,
  this.onChanged,
}) : super(key: key);