ResponsiveCheckbox constructor

const ResponsiveCheckbox({
  1. Key? key,
  2. dynamic onChange(
    1. bool?
    )?,
  3. bool value = false,
})

Implementation

const ResponsiveCheckbox({
  Key? key,
  this.onChange,
  this.value = false,
}) : super(key: key);