UrlRewrite.fromJson constructor

UrlRewrite.fromJson(
  1. Map json_
)

Implementation

UrlRewrite.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,
        pathTemplateRewrite: json_.containsKey('pathTemplateRewrite')
            ? json_['pathTemplateRewrite'] as core.String
            : null,
      );