stopForegroundService method

Future<void> stopForegroundService()

Implementation

Future<void> stopForegroundService() async {
  if (!WebRTC.platformIsAndroid) return;

  await _nativeChannel.invokeMethod("stopForeground");
}