updateLocation method

Future<User> updateLocation(
  1. String? location
)

Implementation

Future<User> updateLocation(String? location) async {
  //
  var body = json.encode({"location": location, "client": client});
  //
  // final initUrl = '$baseUrl/api/user/location';
  final initUrl = BytedeskUtils.getHostUri('/api/user/location');
  final initResponse =
      await httpClient.post(initUrl, headers: getHeaders(), body: body);
  //解决json解析中的乱码问题
  Utf8Decoder utf8decoder = const Utf8Decoder(); // fix 中文乱码
  //将string类型数据 转换为json类型的数据
  final responseJson =
      json.decode(utf8decoder.convert(initResponse.bodyBytes));
  debugPrint("updateLocation $responseJson");
  // 判断token是否过期
  if (responseJson.toString().contains('invalid_token')) {
    bytedeskEventBus.fire(InvalidTokenEventBus());
  }
  // 更新本地数据
  SpUtil.putString(BytedeskConstants.location, location!);

  return User.fromJson(responseJson['data']);
}