UpCheckbox constructor

UpCheckbox({
  1. Key? key,
  2. bool initialValue = false,
  3. String? label,
  4. UpColorType? colorType,
  5. UpStyle? style,
  6. Function? onChange,
  7. UpTextDirection labelDirection = UpTextDirection.right,
  8. bool isDisable = false,
})

Implementation

UpCheckbox({
  Key? key,
  this.initialValue = false,
  this.label,
  this.colorType,
  this.style,
  this.onChange,
  this.labelDirection = UpTextDirection.right,
  this.isDisable = false,
}) : super(key: key);