OnVisitRemovedRemoved constructor
Implementation
OnVisitRemovedRemoved({
/// True if all history was removed. If true, then urls will be empty.
required bool allHistory,
List<String>? urls,
}) : _wrapped = $js.OnVisitRemovedRemoved(
allHistory: allHistory,
urls: urls?.toJSArray((e) => e),
);