isKeepAliveRunning method
keepAlive进程是否正在运行 result->{ result:bool, //标识接口调用是否成功 value:bool,//接口返回的连接状态,true表示进程正在运行,false表示程正不在运行状态
Implementation
static Future<FlutterMobileIMSDKResult> isKeepAliveRunning() {
return _channel.invokeMethod('isKeepAliveRunning').then((value) => FlutterMobileIMSDKResult.fromJson(value));
}