copyWith method

LinkTokenGetRequest copyWith({
  1. String? clientId,
  2. String? secret,
  3. String? linkToken,
})

Implementation

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