CheckBoxFormWidget constructor

const CheckBoxFormWidget({
  1. Key? key,
  2. required BooleanFormComponent component,
})

Creates a Checkbox to display a boolean value contained in component

Implementation

const CheckBoxFormWidget({Key? key, required this.component})
    : super(key: key);