VVCheckBox constructor

const VVCheckBox({
  1. Key? key,
  2. required ValueNotifier<bool> flag,
  3. required VVCheckBoxType type,
  4. bool isDisabled = false,
})

Implementation

const VVCheckBox({
  super.key,
  required this.flag,
  required this.type,
  this.isDisabled = false,
});