httpPost function
The default http POST that support Logging
Implementation
Future<http.Response> httpPost(Uri url,
{Map<String, String>? headers,
Object? body,
bool enableDio = false}) async {
final startTime = DateTime.now();
initProxyClient(url);
if (enableDio) {
try {
final res = await Dio().post(url.toString(),
options: Options(headers: headers, responseType: ResponseType.plain),
data: body);
printLog('🔼 POST:$url', startTime);
final response = http.Response(res.toString(), res.statusCode!);
return response;
} on DioError catch (e) {
if (e.response != null) {
final response =
http.Response(e.response.toString(), e.response!.statusCode!);
return response;
} else {
// ignore: only_throw_errors
throw e.message;
}
}
} else {
final response = await http.post(url, headers: headers, body: body);
printLog('🔼 POST:$url', startTime);
return response;
}
}