InteractiveButton constructor
Implementation
InteractiveButton(super.customId, { bool standalone = false }) {
if (standalone) {
InteractionCollector<ButtonCreateEvent>(customId).collect().then((value) async {
await handle(value);
});
}
}