SeoKey constructor
SeoKey(})
Implementation
SeoKey(
this.tagType, {
this.text = "",
this.src = "",
this.alt = "",
String? className,
Map<String, String>? attributes,
}) : attributes = attributes ??
(tagType == TagType.p ? const {"style": "color:black;"} : {}),
className = className ?? (tagType == TagType.div ? 'content-section' : ""),
super("${tagType.name}/random${_random.nextInt(9999)}");