isJsonMediaType function

bool isJsonMediaType(
  1. String? mediaType
)

Whether mediaType is JSON or a +json structured syntax suffix.

Implementation

bool isJsonMediaType(String? mediaType) {
  if (mediaType == null) return false;
  return mediaType == 'application/json' || mediaType.endsWith('+json');
}