HttpHeaderMatch.fromJson constructor

HttpHeaderMatch.fromJson(
  1. Map json_
)

Implementation

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