InteractiveUserMenu constructor

InteractiveUserMenu(
  1. String customId, {
  2. bool standalone = false,
})

Implementation

InteractiveUserMenu(super.customId, { bool standalone = false }) {
  if (standalone) {
    InteractionCollector<UserMenuCreateEvent>(customId).collect().then((value) async {
      await handle(value);
    });
  }
}