copyWith method
NewSongDataArtists
copyWith(
{ - int? img1v1Id,
- int? topicPerson,
- bool? followed,
- int? picId,
- String? briefDesc,
- String? picUrl,
- int? musicSize,
- int? albumSize,
- String? img1v1Url,
- String? trans,
- List? alias,
- String? name,
- int? id,
- String? img1v1idStr,
})
Implementation
NewSongDataArtists copyWith({
int? img1v1Id,
int? topicPerson,
bool? followed,
int? picId,
String? briefDesc,
String? picUrl,
int? musicSize,
int? albumSize,
String? img1v1Url,
String? trans,
List<dynamic>? alias,
String? name,
int? id,
String? img1v1idStr,
}) {
return NewSongDataArtists()
..img1v1Id = img1v1Id ?? this.img1v1Id
..topicPerson = topicPerson ?? this.topicPerson
..followed = followed ?? this.followed
..picId = picId ?? this.picId
..briefDesc = briefDesc ?? this.briefDesc
..picUrl = picUrl ?? this.picUrl
..musicSize = musicSize ?? this.musicSize
..albumSize = albumSize ?? this.albumSize
..img1v1Url = img1v1Url ?? this.img1v1Url
..trans = trans ?? this.trans
..alias = alias ?? this.alias
..name = name ?? this.name
..id = id ?? this.id
..img1v1idStr = img1v1idStr ?? this.img1v1idStr;
}