FlutterFlowCheckboxGroup constructor

const FlutterFlowCheckboxGroup({
  1. List<String>? initiallySelected,
  2. required List<String> options,
  3. required void onChanged(
    1. List<String>
    )?,
  4. required TextStyle textStyle,
  5. EdgeInsetsGeometry? labelPadding,
  6. EdgeInsetsGeometry? itemPadding,
  7. required Color activeColor,
  8. required Color checkColor,
  9. BorderRadius? checkboxBorderRadius,
  10. required Color checkboxBorderColor,
  11. bool initialized = true,
  12. ValueNotifier<List<String>?>? selectedValuesVariable,
})

Implementation

const FlutterFlowCheckboxGroup({
  this.initiallySelected,
  required this.options,
  required this.onChanged,
  required this.textStyle,
  this.labelPadding,
  this.itemPadding,
  required this.activeColor,
  required this.checkColor,
  this.checkboxBorderRadius,
  required this.checkboxBorderColor,
  this.initialized = true,
  this.selectedValuesVariable,
});