mediaType property
MediaType
get
mediaType
Media type of the linked resource.
Implementation
MediaType get mediaType {
if (type != null && type!.isNotEmpty) {
return MediaType.parse(type!) ?? MediaType.binary;
} else {
return MediaType.binary;
}
}