fromMap static method
Implementation
static MetaTag? fromMap(Map<String, dynamic>? map) {
if (map == null) {
return null;
}
final instance = MetaTag(
attrs: map['attrs'] != null
? List<MetaTagAttribute>.from(map['attrs'].map(
(e) => MetaTagAttribute.fromMap(e?.cast<String, dynamic>())!))
: null,
content: map['content'],
name: map['name'],
);
return instance;
}