copyWith method

RefundStarPayment copyWith({
  1. int? userId,
  2. String? telegramPaymentChargeId,
})

Implementation

RefundStarPayment copyWith({int? userId, String? telegramPaymentChargeId}) =>
    RefundStarPayment(
      userId: userId ?? this.userId,
      telegramPaymentChargeId:
          telegramPaymentChargeId ?? this.telegramPaymentChargeId,
    );