copyWith method
Implementation
StarTransactionTypePremiumPurchase copyWith({
int? userId,
int? monthCount,
Sticker? sticker,
}) => StarTransactionTypePremiumPurchase(
userId: userId ?? this.userId,
monthCount: monthCount ?? this.monthCount,
sticker: sticker ?? this.sticker,
);