post method
Implementation
Future<http.Response> post({required url, Map<String, Object?>? body}) async {
return await http.post(
url,
body: body,
headers: {
'Content-Type': 'application/x-www-form-urlencoded',
'User-Agent': constants.platform,
},
);
}