OSPolicyResourcePackageResourceMSI.fromJson constructor
OSPolicyResourcePackageResourceMSI.fromJson(
- Map json_
Implementation
OSPolicyResourcePackageResourceMSI.fromJson(core.Map json_)
: this(
properties: json_.containsKey('properties')
? (json_['properties'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
source: json_.containsKey('source')
? OSPolicyResourceFile.fromJson(
json_['source'] as core.Map<core.String, core.dynamic>)
: null,
);