HttpQueryParameterMatch.fromJson constructor

HttpQueryParameterMatch.fromJson(
  1. Map json_
)

Implementation

HttpQueryParameterMatch.fromJson(core.Map json_)
    : this(
        exactMatch: json_['exactMatch'] as core.String?,
        name: json_['name'] as core.String?,
        presentMatch: json_['presentMatch'] as core.bool?,
        regexMatch: json_['regexMatch'] as core.String?,
      );