JsonPathMatcher.fromJson constructor
      
      JsonPathMatcher.fromJson(
    
    
- Map json_
Implementation
JsonPathMatcher.fromJson(core.Map json_)
    : this(
        jsonMatcher: json_.containsKey('jsonMatcher')
            ? json_['jsonMatcher'] as core.String
            : null,
        jsonPath: json_.containsKey('jsonPath')
            ? json_['jsonPath'] as core.String
            : null,
      );