Gets the gallery with the given id
Future<Gallery> getGallery(int id) async { final response = await _get('/api/media/gallery/$id'); return Gallery.fromJson(response.data); }