PolicyToPath.fromJson constructor
Implementation
factory PolicyToPath.fromJson(Map<String, dynamic> json) {
return PolicyToPath(
path: json['Path'] as String?,
policies: (json['Policies'] as List?)
?.whereNotNull()
.map((e) => PolicyAttachment.fromJson(e as Map<String, dynamic>))
.toList(),
);
}