startTyping static method
method to inform the receiver that the logged in user has started typing.
receive this information in the onTypingStarted() method of the MessageListener class
Implementation
static startTyping({String? receaverUid, String? receiverType}) async {
try {
await channel.invokeMethod(
'startTyping', {'uid': receaverUid, 'receiverType': receiverType});
} catch (e) {
throw e;
}
}