InputCheckBox constructor
InputCheckBox({})
Implementation
InputCheckBox({
Key? key,
required this.name,
required this.label,
this.fillColor,
this.filled,
this.function,
this.initialValue = false,
}) : super(key: key) {
controller.selecionado = initialValue;
}