copyWith method

UpgradedGiftBackdropCount copyWith({
  1. UpgradedGiftBackdrop? backdrop,
  2. int? totalCount,
})

Implementation

UpgradedGiftBackdropCount copyWith({
  UpgradedGiftBackdrop? backdrop,
  int? totalCount,
}) => UpgradedGiftBackdropCount(
  backdrop: backdrop ?? this.backdrop,
  totalCount: totalCount ?? this.totalCount,
);