get static method
Fetch a single media item by its mediaId.
Throws CloudMediaNotFoundException if the item does not exist.
Implementation
static Future<CloudMediaItem> get(String mediaId) async {
_ensure();
return _provider!.getMedia(mediaId);
}