create static method

PageContent create({
  1. Uri? url,
  2. String? html,
  3. required String title,
  4. TransportableFile? icon,
  5. String? desc,
})

Implementation

static PageContent create({Uri? url, String? html,
  required String title, TransportableFile? icon, String? desc}) =>
    WebPageContent.from(url: url, html: html,
      title: title, icon: icon, desc: desc);