Source
String preprocessBody(var body) {
if (body is String) {
return body;
} else {
headers['Content-Type'] = "application/json";
return JSON.encode(body);
}
}
String preprocessBody(var body) {
if (body is String) {
return body;
} else {
headers['Content-Type'] = "application/json";
return JSON.encode(body);
}
}