isServiceRunning static method

Future<bool> isServiceRunning()

Implementation

static Future<bool> isServiceRunning() async {
  return (await _channel
      .invokeMethod<bool>(Keys.METHOD_PLUGIN_IS_SERVICE_RUNNING))!;
}