WiredCheckbox constructor

const WiredCheckbox({
  1. Key? key,
  2. required bool? value,
  3. required void onChanged(
    1. bool?
    ),
})

Implementation

const WiredCheckbox({
  Key? key,
  required this.value,
  required this.onChanged,
}) : super(key: key);