OSPolicyAssignmentLabelSet.fromJson constructor
OSPolicyAssignmentLabelSet.fromJson(
- Map _json
Implementation
OSPolicyAssignmentLabelSet.fromJson(core.Map _json)
: this(
labels: _json.containsKey('labels')
? (_json['labels'] as core.Map<core.String, core.dynamic>).map(
(key, item) => core.MapEntry(
key,
item as core.String,
),
)
: null,
);