Future<global.Response> postAsync(String requestUri, String data) async { return await httpClient!.post(Uri.parse(requestUri), headers: {"Content-Type": "application/json"}, body: data); }