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