copyWith method

NewSongDataAlbumArtist copyWith({
  1. int? img1v1Id,
  2. int? topicPerson,
  3. bool? followed,
  4. int? picId,
  5. String? briefDesc,
  6. String? picUrl,
  7. int? musicSize,
  8. int? albumSize,
  9. String? img1v1Url,
  10. String? trans,
  11. List? alias,
  12. String? name,
  13. int? id,
  14. String? img1v1idStr,
})

Implementation

NewSongDataAlbumArtist 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 NewSongDataAlbumArtist()
    ..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;
}