follow method

Future<JsonResult> follow(
  1. String? uid
)

Implementation

Future<JsonResult> follow(String? uid) async {
  //
  var body = json.encode({"uid": uid, "client": client});
  final initUrl = BytedeskUtils.getHostUri('/api/user/follow');
  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("responseJson $responseJson");
  //
  return JsonResult.fromJson(responseJson);
}