copyWith method

LinkTokenCreateRequestTransfer copyWith({
  1. String? intentId,
  2. String? paymentProfileToken,
})

Implementation

LinkTokenCreateRequestTransfer copyWith(
    {String? intentId, String? paymentProfileToken}) {
  return LinkTokenCreateRequestTransfer(
      intentId: intentId ?? this.intentId,
      paymentProfileToken: paymentProfileToken ?? this.paymentProfileToken);
}