Head constructor

Head({
  1. String? title,
  2. String? description,
  3. String? keywords,
  4. String? viewport = "width=device-width, initial-scale=1.0",
  5. String? author,
  6. String? charset = "utf-8",
  7. String? robots,
  8. Map<String, String> meta = const {},
  9. Map<String, String> links = const {},
  10. List<String> styles = const [],
  11. List<String> scripts = const [],
})

Implementation

Head({
  this.title,
  this.description,
  this.keywords,
  this.viewport = "width=device-width, initial-scale=1.0",
  this.author,
  this.charset = "utf-8",
  this.robots,
  this.meta = const {},
  this.links = const {},
  this.styles = const [],
  this.scripts = const [],
});