getAlbumPhotos method Null safety
@GET("/albums/{albumId}/photos"), override
Returns list with all photo models of a given album.
Implementation
@GET("/albums/{albumId}/photos")
@override
Future<List<PhotoModel>> getAlbumPhotos({
@Path("albumId") required int albumId,
});