fetchJoinedGroupCount method

Future<int> fetchJoinedGroupCount()

从服务器获取当前用户已加入的群组数量。

Return 加入的群组数量。

Throws 如果有异常会在此抛出,包括错误码和错误信息,详见 EMError

Implementation

Future<int> fetchJoinedGroupCount() async {
  Map result =
      await _channel.invokeMethod(ChatMethodKeys.fetchJoinedGroupCount);
  try {
    EMError.hasErrorFromResult(result);
    int count = result[ChatMethodKeys.fetchJoinedGroupCount];
    return count;
  } on EMError catch (e) {
    throw e;
  }
}