copyWith method
Implementation
UpgradedGiftBackdropColors copyWith({
int? centerColor,
int? edgeColor,
int? symbolColor,
int? textColor,
}) => UpgradedGiftBackdropColors(
centerColor: centerColor ?? this.centerColor,
edgeColor: edgeColor ?? this.edgeColor,
symbolColor: symbolColor ?? this.symbolColor,
textColor: textColor ?? this.textColor,
);