endChat method

Future<void> endChat()

Providers only - end the live chat

Implementation

Future<void> endChat() async {
  try {
    await _channel.invokeMethod('endChat');
  } catch (e) {
    print(e);
  }
}