UpCheckbox constructor

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

Implementation

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