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