patchData static method
Implementation
static Future<http.Response> patchData(
String url, Map<String, String> header, Map<String, dynamic> body) {
return http.patch(Uri.parse(url), headers: header, body: body);
}
static Future<http.Response> patchData(
String url, Map<String, String> header, Map<String, dynamic> body) {
return http.patch(Uri.parse(url), headers: header, body: body);
}