S360fCheckbox constructor

const S360fCheckbox({
  1. Key? key,
  2. String? label,
  3. bool? value,
  4. @Deprecated("Use 'isDisabled' instead.") bool disable = false,
  5. bool isDisabled = false,
  6. bool isError = false,
  7. ValueChanged<bool?>? onChanged,
  8. MouseCursor? mouseCursor,
  9. S360fCheckBoxSize size = S360fCheckBoxSize.medium,
  10. S360fWidgetColorVariant color = S360fWidgetColorVariant.primary,
  11. Color uncheckedBackgroundColor = Colors.transparent,
})

Implementation

const S360fCheckbox({
  super.key,
  this.label,
  this.value,
  @Deprecated("Use 'isDisabled' instead.") this.disable = false,
  this.isDisabled = false,
  this.isError = false,
  this.onChanged,
  this.mouseCursor,
  this.size = S360fCheckBoxSize.medium,
  this.color = S360fWidgetColorVariant.primary,
  this.uncheckedBackgroundColor = Colors.transparent,
});