Head constructor
Head({
- String? title,
- String? description,
- String? keywords,
- String? viewport = "width=device-width, initial-scale=1.0",
- String? author,
- String? charset = "utf-8",
- String? robots,
- Map<
String, String> meta = const {}, - Map<
String, String> links = const {}, - List<
String> styles = const [], - 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 [],
});