fetchSilentModeForAll method

Future<ChatSilentModeResult> fetchSilentModeForAll()

获取当前登录用户的 app 级别的推送通知设置。

Return 推送通知设置。

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

Implementation

Future<ChatSilentModeResult> fetchSilentModeForAll() async {
  Map result =
      await PushChannel.invokeMethod(ChatMethodKeys.fetchSilentModeForAll);
  try {
    EMError.hasErrorFromResult(result);
    return ChatSilentModeResult.fromJson(
      result[ChatMethodKeys.fetchSilentModeForAll],
    );
  } on EMError catch (e) {
    throw e;
  }
}