copyWith method
Implementation
PlaylistDetailPlaylistTracksAl copyWith({
int? id,
String? name,
String? picUrl,
List<dynamic>? tns,
String? picStr,
int? pic,
}) {
return PlaylistDetailPlaylistTracksAl()
..id = id ?? this.id
..name = name ?? this.name
..picUrl = picUrl ?? this.picUrl
..tns = tns ?? this.tns
..picStr = picStr ?? this.picStr
..pic = pic ?? this.pic;
}