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