HttpRouteURLRewrite.fromJson constructor

HttpRouteURLRewrite.fromJson(
  1. Map json_
)

Implementation

HttpRouteURLRewrite.fromJson(core.Map json_)
    : this(
        hostRewrite: json_.containsKey('hostRewrite')
            ? json_['hostRewrite'] as core.String
            : null,
        pathPrefixRewrite: json_.containsKey('pathPrefixRewrite')
            ? json_['pathPrefixRewrite'] as core.String
            : null,
      );