Seo.head constructor

Seo.head({
  1. Key? key,
  2. required List<HeadTag> tags,
  3. required Widget child,
})

Implementation

Seo.head({
  super.key,
  required List<head_tag.HeadTag> tags,
  required this.child,
}) : tag = HeadTags(tags: tags);