GooglePrivacyDlpV2Dictionary.fromJson constructor

GooglePrivacyDlpV2Dictionary.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2Dictionary.fromJson(core.Map json_)
  : this(
      cloudStoragePath: json_.containsKey('cloudStoragePath')
          ? GooglePrivacyDlpV2CloudStoragePath.fromJson(
              json_['cloudStoragePath']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      wordList: json_.containsKey('wordList')
          ? GooglePrivacyDlpV2WordList.fromJson(
              json_['wordList'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );