isJson static method
http request data is json
Implementation
static bool isJson(ContentType? contentType) {
return contentType.toString().toLowerCase().contains('json') == true;
}
http request data is json
static bool isJson(ContentType? contentType) {
return contentType.toString().toLowerCase().contains('json') == true;
}