Seo.html constructor

Seo.html({
  1. Key? key,
  2. required String html,
  3. required Widget child,
})

Implementation

Seo.html({
  super.key,
  required String html,
  required this.child,
}) : tag = HtmlTag(html: html);