HttpHeaderMatch.fromJson constructor

HttpHeaderMatch.fromJson(
  1. Map _json
)

Implementation

HttpHeaderMatch.fromJson(core.Map _json)
    : this(
        headerName: _json.containsKey('headerName')
            ? _json['headerName'] as core.String
            : null,
        regexMatch: _json.containsKey('regexMatch')
            ? _json['regexMatch'] as core.String
            : null,
      );