copyWith method

PaymentInitiationPaymentGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? paymentId,
})

Implementation

PaymentInitiationPaymentGetRequest copyWith(
    {String? clientId, String? secret, String? paymentId}) {
  return PaymentInitiationPaymentGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      paymentId: paymentId ?? this.paymentId);
}