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