> For the complete documentation index, see [llms.txt](https://docs.mburger.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mburger.cloud/flutter-sdk/media.md).

# Media

You can retrieve a media stored on MBurger with its id:

```dart
MBMedia media = await MBManager.shared.getMedia(MEDIA_ID);
```

To retrieve all the media that are saved in MBurger you can use this function:

```dart
List<MBMedia> media = await MBManager.shared.getAllMedia();
```
