copyWith method

PaymentInitiationRecipientGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? recipientId,
})

Implementation

PaymentInitiationRecipientGetRequest copyWith(
    {String? clientId, String? secret, String? recipientId}) {
  return PaymentInitiationRecipientGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      recipientId: recipientId ?? this.recipientId);
}