getUserAlbums method Null safety
@GET("/users/{userId}/albums"), override
Returns list with all album models from a given user.
Implementation
@GET("/users/{userId}/albums")
@override
Future<List<AlbumModel>> getUserAlbums({
@Path("userId") required int userId,
});