copyWith method
Implementation
EmojiStatusTypeUpgradedGift copyWith({
int? upgradedGiftId,
String? giftTitle,
String? giftName,
int? modelCustomEmojiId,
int? symbolCustomEmojiId,
UpgradedGiftBackdropColors? backdropColors,
}) => EmojiStatusTypeUpgradedGift(
upgradedGiftId: upgradedGiftId ?? this.upgradedGiftId,
giftTitle: giftTitle ?? this.giftTitle,
giftName: giftName ?? this.giftName,
modelCustomEmojiId: modelCustomEmojiId ?? this.modelCustomEmojiId,
symbolCustomEmojiId: symbolCustomEmojiId ?? this.symbolCustomEmojiId,
backdropColors: backdropColors ?? this.backdropColors,
);