GooglePrivacyDlpV2Value.fromJson constructor
GooglePrivacyDlpV2Value.fromJson(
- Map json_
Implementation
GooglePrivacyDlpV2Value.fromJson(core.Map json_)
: this(
booleanValue: json_['booleanValue'] as core.bool?,
dateValue: json_.containsKey('dateValue')
? GoogleTypeDate.fromJson(
json_['dateValue'] as core.Map<core.String, core.dynamic>)
: null,
dayOfWeekValue: json_['dayOfWeekValue'] as core.String?,
floatValue: (json_['floatValue'] as core.num?)?.toDouble(),
integerValue: json_['integerValue'] as core.String?,
stringValue: json_['stringValue'] as core.String?,
timeValue: json_.containsKey('timeValue')
? GoogleTypeTimeOfDay.fromJson(
json_['timeValue'] as core.Map<core.String, core.dynamic>)
: null,
timestampValue: json_['timestampValue'] as core.String?,
);