LoCheckbox<TKey> constructor

const LoCheckbox<TKey>({
  1. Key? key,
  2. required TKey loKey,
  3. bool? initialValue,
  4. List<LoFieldBaseValidator<bool>>? validators,
  5. Duration? debounceTime,
  6. CheckboxProps? props,
  7. required Widget label,
  8. TextStyle? errorStyle,
})

Implementation

const LoCheckbox({
  Key? key,
  required this.loKey,
  this.initialValue,
  this.validators,
  this.debounceTime,
  this.props,
  required this.label,
  this.errorStyle,
}) : super(key: key);