GooglePrivacyDlpV2MetadataLocation.fromJson constructor
GooglePrivacyDlpV2MetadataLocation.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2MetadataLocation.fromJson(core.Map json_)
: this(
storageLabel: json_.containsKey('storageLabel')
? GooglePrivacyDlpV2StorageMetadataLabel.fromJson(
json_['storageLabel'] as core.Map<core.String, core.dynamic>)
: null,
type: json_.containsKey('type') ? json_['type'] as core.String : null,
);