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