ScpActionDefinition.fromJson constructor
Implementation
factory ScpActionDefinition.fromJson(Map<String, dynamic> json) {
return ScpActionDefinition(
policyId: json['PolicyId'] as String,
targetIds: (json['TargetIds'] as List)
.whereNotNull()
.map((e) => e as String)
.toList(),
);
}