copyWith method

PaymentProfileGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? paymentProfileToken,
})

Implementation

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