stopCoBrowsing method

  1. @override
Future<void> stopCoBrowsing()
override

Implementation

@override
Future<void> stopCoBrowsing() async {
  try {
    await methodChannel.invokeMethod<void>('stopCoBrowsing');
  } on PlatformException {
    'Failed to stop coBrowsing.';
  }
}