JsonPathMatcher.fromJson constructor

JsonPathMatcher.fromJson(
  1. 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,
      );