AxonMultiSelectInput constructor

const AxonMultiSelectInput({
  1. Key? key,
  2. required AxonFormNode node,
  3. AxonFormMultiSelectInputStyle? style,
  4. Widget builder(
    1. BuildContext context,
    2. AxonFormNode field,
    3. List<AxonFormNode> options,
    4. List<String>? selectedValue,
    5. void onChanged(
      1. AxonFormNode option,
      2. bool? checked
      ),
    6. String? errorText,
    )?,
})

Implementation

const AxonMultiSelectInput({
  super.key,
  required super.node,
  this.style,
  this.builder,
});