copyWith method

StarTransactionTypePremiumPurchase copyWith({
  1. int? userId,
  2. int? monthCount,
  3. Sticker? sticker,
})

Implementation

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