post method
Implementation
Future<response_helper.Response> post(
String key, {
dynamic data,
String? token,
String? contentType,
}) {
final item = getPathItem(key);
if (data != null) item.setData(data);
return request(item, token: token, contentType: contentType);
}