RegexRewrite.fromJson constructor

RegexRewrite.fromJson(
  1. Map json_
)

Implementation

RegexRewrite.fromJson(core.Map json_)
  : this(
      pathPattern: json_['pathPattern'] as core.String?,
      pathSubstitution: json_['pathSubstitution'] as core.String?,
    );