WeCheckboxGroup<T> constructor

WeCheckboxGroup<T>({
  1. int? max,
  2. List<T>? defaultValue,
  3. List<T>? value,
  4. void onChange(
    1. List<T>
    )?,
  5. required Widget child,
})

Implementation

WeCheckboxGroup(
    {this.max,
    this.defaultValue,
    this.value,
    this.onChange,
    required this.child});