CustomizableMultiselectDialogOptions constructor

const CustomizableMultiselectDialogOptions({
  1. Text? title,
  2. String okButtonLabel = 'Ok',
  3. String cancelButtonLabel = 'Cancel',
  4. bool enableSearchBar = true,
  5. InputDecoration? searchBarDecoration,
})

Implementation

const CustomizableMultiselectDialogOptions({
  this.title,
  this.okButtonLabel = 'Ok',
  this.cancelButtonLabel = 'Cancel',
  this.enableSearchBar = true,
  this.searchBarDecoration,
});