isServiceRunning static method

Future<bool> isServiceRunning(
  1. ServiceType type
)

Implementation

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