deferredReply method

Future<Interaction> deferredReply()

Responds to this by a deferred Message (Show a loading state to the user)

Implementation

Future<Interaction> deferredReply () async {
  await ioc.use<DiscordApiHttpService>().post(url: "/interactions/$id/$token/callback")
    .payload({ 'type': InteractionCallbackType.deferredChannelMessageWithSource.value })
    .build();

  return this;
}