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