getImPushConfig method

Future<EMImPushConfig> getImPushConfig()

从本地获取ImPushConfig

Implementation

Future<EMImPushConfig> getImPushConfig() async {
  Map result = await _channel.invokeMethod(EMSDKMethod.getImPushConfig);
  EMError.hasErrorFromResult(result);
  return EMImPushConfig.fromJson(result[EMSDKMethod.getImPushConfig]);
}