MultipleSelectOption constructor

MultipleSelectOption({
  1. String? description,
  2. String? displayName,
  3. String? key,
  4. bool? preselected,
})

Implementation

MultipleSelectOption({
  this.description,
  this.displayName,
  this.key,
  this.preselected,
});