NowPlayingMetadata constructor

const NowPlayingMetadata({
  1. required String title,
  2. String? subtitle,
  3. String? artworkUrl,
  4. bool isLive = false,
  5. Duration? duration,
})

Implementation

const NowPlayingMetadata({
  required this.title,
  this.subtitle,
  this.artworkUrl,
  this.isLive = false,
  this.duration,
});