copyWith method

AlbumInfoAlbumInfoCommentThreadResourceInfo copyWith({
  1. int? id,
  2. int? userId,
  3. String? name,
  4. String? imgUrl,
  5. dynamic creator,
  6. dynamic encodedId,
  7. dynamic subTitle,
  8. dynamic webUrl,
})

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;
}