stopService static method
Implementation
static Future<bool> stopService(
ServiceType type, {
String? callCid,
}) async {
if (!isAndroid) {
return false;
}
return StreamVideoFlutterPlatform.instance
.stopBackgroundService(type, callCid: callCid);
}