copyWith method

PaymentInitiationRecipientListRequest copyWith({
  1. String? clientId,
  2. String? secret,
})

Implementation

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