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