copyWith method
Implementation
PlaylistDetailPlaylistTracksM copyWith({
int? br,
int? fid,
int? size,
double? vd,
}) {
return PlaylistDetailPlaylistTracksM()
..br = br ?? this.br
..fid = fid ?? this.fid
..size = size ?? this.size
..vd = vd ?? this.vd;
}