isConnected method

Future<bool> isConnected()

检查 SDK 是否连接到 Chat 服务器。 Return SDK 是否连接到 Chat 服务器。

  • true:是;
  • false:否。

Implementation

Future<bool> isConnected() async {
  Map result = await ClientChannel.invokeMethod(ChatMethodKeys.isConnected);
  try {
    EMError.hasErrorFromResult(result);
    return result.boolValue(ChatMethodKeys.isConnected);
  } on EMError catch (e) {
    throw e;
  }
}