MostVisitedURL constructor

MostVisitedURL({
  1. required String url,
  2. required String title,
})

Implementation

MostVisitedURL({
  /// The most visited URL.
  required String url,

  /// The title of the page
  required String title,
}) : _wrapped = $js.MostVisitedURL(
        url: url,
        title: title,
      );