isJson static method

bool isJson(
  1. ContentType? contentType
)

http request data is json

Implementation

static bool isJson(ContentType? contentType) {
  return contentType.toString().toLowerCase().contains('json') == true;
}