SpotifyException constructor

const SpotifyException(
  1. String message, {
  2. String? code,
  3. dynamic details,
  4. Object? cause,
})

Constructs a SpotifyException.

Implementation

const SpotifyException(
  this.message, {
  this.code,
  this.details,
  this.cause,
});