isQoS4SendDaemonRunning method

Future<FlutterMobileIMSDKResult> isQoS4SendDaemonRunning ()

QoS4Send进程是否正在运行

result->{ result:bool, //标识接口调用是否成功 value:bool,//接口返回的连接状态,true表示进程正在运行,false表示程正不在运行状态

Implementation

static Future<FlutterMobileIMSDKResult> isQoS4SendDaemonRunning() {
  return _channel.invokeMethod('isQoS4SendDaemonRunning').then((value) => FlutterMobileIMSDKResult.fromJson(value));
}