removeWebhook method

Future<void> removeWebhook()

Remove and stops webhook

Implementation

Future<void> removeWebhook() async {
  await super.deleteWebhook();
  if (fetcher is Webhook) {
    await fetcher.stop();
  }
}