Head constructor

Head({
  1. required String title,
  2. Iterable<Meta>? metas,
  3. Iterable<Link>? links,
  4. Iterable<Style>? styles,
})

Implementation

Head({
  required this.title,
  this.metas,
  this.links,
  this.styles,
}) : super(children: []);