copyWithWrapped method
Implementation
PlaybackState copyWithWrapped(
{Wrapped<String?>? token,
Wrapped<int?>? offsetInMilliseconds,
Wrapped<String?>? playerActivity}) {
return PlaybackState(
token: (token != null ? token.value : this.token),
offsetInMilliseconds: (offsetInMilliseconds != null
? offsetInMilliseconds.value
: this.offsetInMilliseconds),
playerActivity: (playerActivity != null
? playerActivity.value
: this.playerActivity));
}