triggerTyping method

Future<void> triggerTyping(
  1. Snowflake channelId
)

Trigger the typing indicator for the current user in a channel.

Implementation

Future<void> triggerTyping(Snowflake channelId) async {
  final route = HttpRoute()
    ..channels(id: channelId.toString())
    ..typing();
  final request = BasicRequest(route, method: 'POST');

  await client.httpHandler.executeSafe(request);
}