create static method
PageContent
create({
- Uri? url,
- String? html,
- required String title,
- TransportableFile? icon,
- 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);