GrxRoundedCheckbox constructor

const GrxRoundedCheckbox({
  1. Key? key,
  2. bool value = false,
  3. double radius = 18,
  4. dynamic onChanged(
    1. bool
    )?,
  5. bool isTappable = true,
  6. bool enabled = true,
  7. bool isLoading = false,
})

Implementation

const GrxRoundedCheckbox({
  super.key,
  this.value = false,
  this.radius = 18,
  this.onChanged,
  this.isTappable = true,
  this.enabled = true,
  this.isLoading = false,
});