copyWith method
Implementation
AlbumInfoAlbumInfoCommentThreadResourceInfo copyWith({
int? id,
int? userId,
String? name,
String? imgUrl,
dynamic creator,
dynamic encodedId,
dynamic subTitle,
dynamic webUrl,
}) {
return AlbumInfoAlbumInfoCommentThreadResourceInfo()
..id = id ?? this.id
..userId = userId ?? this.userId
..name = name ?? this.name
..imgUrl = imgUrl ?? this.imgUrl
..creator = creator ?? this.creator
..encodedId = encodedId ?? this.encodedId
..subTitle = subTitle ?? this.subTitle
..webUrl = webUrl ?? this.webUrl;
}