GrxCheckbox constructor

const GrxCheckbox({
  1. Key? key,
  2. bool value = false,
  3. bool enabled = true,
  4. bool isLoading = false,
})

Implementation

const GrxCheckbox({
  super.key,
  this.value = false,
  this.enabled = true,
  this.isLoading = false,
});