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