RowCheckboxButton constructor

const RowCheckboxButton({
  1. Key? key,
  2. bool value = false,
  3. void onPressed(
    1. bool s
    )?,
  4. required String label,
})

Implementation

const RowCheckboxButton({
  super.key,
  this.value = false,
  this.onPressed,
  required this.label,
});