GooglePrivacyDlpV2Regex.fromJson constructor

GooglePrivacyDlpV2Regex.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2Regex.fromJson(core.Map json_)
  : this(
      groupIndexes:
          (json_['groupIndexes'] as core.List?)
              ?.map((value) => value as core.int)
              .toList(),
      pattern: json_['pattern'] as core.String?,
    );