SelectMenuOption<T> constructor

SelectMenuOption<T>({
  1. required String label,
  2. required T value,
  3. String? description,
  4. PartialEmoji? emoji,
  5. bool? isDefault = false,
})

Implementation

SelectMenuOption(
    {required this.label,
    required this.value,
    this.description,
    this.emoji,
    this.isDefault = false});