InheritedPseudoElementMatches.fromJson constructor

InheritedPseudoElementMatches.fromJson(
  1. Map<String, dynamic> json
)

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(),
  );
}