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