copyWith method
Implementation
PlaybackState copyWith(
{String? token, int? offsetInMilliseconds, String? playerActivity}) {
return PlaybackState(
token: token ?? this.token,
offsetInMilliseconds: offsetInMilliseconds ?? this.offsetInMilliseconds,
playerActivity: playerActivity ?? this.playerActivity);
}