get static method

Future<CloudMediaItem> get(
  1. String mediaId
)

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);
}