copyWith method

UpgradedGiftBackdropColors copyWith({
  1. int? centerColor,
  2. int? edgeColor,
  3. int? symbolColor,
  4. int? textColor,
})

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,
);