sendTypingGoneStatus method

  1. @override
dynamic sendTypingGoneStatus(
  1. String toJid,
  2. String chattype
)
override

This method is used to remove the current user's typing status.

Implementation

@override
sendTypingGoneStatus(String toJid, String chattype) async {
  try {
    await mirrorFlyMethodChannel.invokeMethod(
        'sendTypingGoneStatus', {"to_jid": toJid, "chattype": chattype});
  } on PlatformException catch (e) {
    LogMessage.d("Platform Exception =", " $e");
    rethrow;
  } on Exception catch (error) {
    LogMessage.d("Exception ", " $error");
    rethrow;
  }
}