GooglePrivacyDlpV2QuasiIdentifierField.fromJson constructor
GooglePrivacyDlpV2QuasiIdentifierField.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2QuasiIdentifierField.fromJson(core.Map json_)
: this(
customTag: json_.containsKey('customTag')
? json_['customTag'] as core.String
: null,
field: json_.containsKey('field')
? GooglePrivacyDlpV2FieldId.fromJson(
json_['field'] as core.Map<core.String, core.dynamic>)
: null,
);