FormBuilderCheckboxList constructor

FormBuilderCheckboxList({@required String attribute, @required List<FormBuilderFieldOption> options, dynamic initialValue: const [], List<FormFieldValidator> validators: const [], bool readOnly: false, bool leadingInput: false, InputDecoration decoration: const InputDecoration(), ValueChanged onChanged, ValueTransformer valueTransformer, Color activeColor, Color checkColor, MaterialTapTargetSize materialTapTargetSize, bool tristate: false })

Implementation

FormBuilderCheckboxList({
  @required this.attribute,
  @required this.options,
  this.initialValue = const [],
  this.validators = const [],
  this.readOnly = false,
  this.leadingInput = false,
  this.decoration = const InputDecoration(),
  this.onChanged,
  this.valueTransformer,
  this.activeColor,
  this.checkColor,
  this.materialTapTargetSize,
  this.tristate = false,
});