post method
Implementation
Future<Response> post(String path, String body,
{Map<String, String>? customHeaders}) async {
return _config.client.post(
Uri.parse('$baseUrl$path'),
headers: headers(customHeaders),
body: body,
);
}
Future<Response> post(String path, String body,
{Map<String, String>? customHeaders}) async {
return _config.client.post(
Uri.parse('$baseUrl$path'),
headers: headers(customHeaders),
body: body,
);
}