GooglePrivacyDlpV2FileLabelInfoType.fromJson constructor
GooglePrivacyDlpV2FileLabelInfoType.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2FileLabelInfoType.fromJson(core.Map json_)
: this(
googleDriveLabel: json_.containsKey('googleDriveLabel')
? GooglePrivacyDlpV2GoogleDriveLabel.fromJson(
json_['googleDriveLabel']
as core.Map<core.String, core.dynamic>,
)
: null,
sensitivityLabel: json_.containsKey('sensitivityLabel')
? GooglePrivacyDlpV2SensitivityLabel.fromJson(
json_['sensitivityLabel']
as core.Map<core.String, core.dynamic>,
)
: null,
);