getNewReleases method

  1. @Deprecated('Use [newReleases] instead')
Pages<AlbumSimple> getNewReleases({
  1. String? country,
})

Returns the new releases.

country - a country: an ISO 3166-1 alpha-2 country code. Provide this parameter if you want to narrow the list of returned new releases to those relevant to a particular country. If omitted, the returned items will be globally relevant.

Implementation

@Deprecated('Use [newReleases] instead')
Pages<AlbumSimple> getNewReleases({String? country}) =>
    newReleases(country: Market.values.asNameMap()[country]);