HistoryItem constructor
HistoryItem({})
Implementation
HistoryItem({
/// The unique identifier for the item.
required String id,
/// The URL navigated to by a user.
String? url,
/// The title of the page when it was last loaded.
String? title,
/// When this page was last loaded, represented in milliseconds since the
/// epoch.
double? lastVisitTime,
/// The number of times the user has navigated to this page.
int? visitCount,
/// The number of times the user has navigated to this page by typing in the
/// address.
int? typedCount,
}) : _wrapped = $js.HistoryItem(
id: id,
url: url,
title: title,
lastVisitTime: lastVisitTime,
visitCount: visitCount,
typedCount: typedCount,
);