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