copyWith method

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

Implementation

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