getMediaProperties method
Returns all media properties in a map or null if no media properties are found
Implementation
Map<dynamic, dynamic>? getMediaProperties() {
if (_allProperties == null) {
return Map();
} else {
return _allProperties!["format"];
}
}