GooglePrivacyDlpV2ReplaceValueConfig.fromJson constructor

GooglePrivacyDlpV2ReplaceValueConfig.fromJson(
  1. Map json_
)

Implementation

GooglePrivacyDlpV2ReplaceValueConfig.fromJson(core.Map json_)
  : this(
      newValue: json_.containsKey('newValue')
          ? GooglePrivacyDlpV2Value.fromJson(
              json_['newValue'] as core.Map<core.String, core.dynamic>,
            )
          : null,
    );