InheritedPseudoElementMatches.fromJson constructor
Implementation
factory InheritedPseudoElementMatches.fromJson(Map<String, dynamic> json) {
return InheritedPseudoElementMatches(
pseudoElements: (json['pseudoElements'] as List)
.map((e) => PseudoElementMatches.fromJson(e as Map<String, dynamic>))
.toList(),
);
}