UXPFieldCheckBox constructor

const UXPFieldCheckBox({
  1. Key? key,
  2. required String value,
  3. required String labelText,
  4. Function? onChange,
  5. String? label,
  6. String? description,
})

Implementation

const UXPFieldCheckBox(
    {Key? key,
    required this.value,
    required this.labelText,
    this.onChange,
    this.label,
    this.description})
    : super(key: key);