GooglePrivacyDlpV2DiscoveryTableModifiedCadence.fromJson constructor
GooglePrivacyDlpV2DiscoveryTableModifiedCadence.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2DiscoveryTableModifiedCadence.fromJson(core.Map json_)
: this(
frequency: json_.containsKey('frequency')
? json_['frequency'] as core.String
: null,
types: json_.containsKey('types')
? (json_['types'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);