SelectItemInfo constructor

SelectItemInfo({
  1. String? key,
  2. List<String>? synonyms,
})

Additional info about the select item for when it is triggered in a dialog.

Implementation

SelectItemInfo({
  this.key,
  this.synonyms,
});