MultiSelectDialog<V> constructor

MultiSelectDialog<V>({
  1. Key? key,
  2. List<MultiSelectDialogItem<V>>? items,
  3. List<V>? initialSelectedValues,
  4. Widget? title,
  5. String? okButtonLabel,
  6. String? cancelButtonLabel,
  7. TextStyle labelStyle = const TextStyle(),
  8. ShapeBorder? dialogShapeBorder,
  9. Color? checkBoxActiveColor,
  10. Color? checkBoxCheckColor,
})

Implementation

MultiSelectDialog(
    {Key? key,
    this.items,
    this.initialSelectedValues,
    this.title,
    this.okButtonLabel,
    this.cancelButtonLabel,
    this.labelStyle = const TextStyle(),
    this.dialogShapeBorder,
    this.checkBoxActiveColor,
    this.checkBoxCheckColor})
    : super(key: key);