toMap method
Implementation
@override
Map<String, dynamic> toMap() {
return {
"\$id": $id,
"name": name,
"\$createdAt": $createdAt,
"\$updatedAt": $updatedAt,
"enabled": enabled,
"type": type.value,
"policies": policies.map((p) => p.toMap()).toList(),
"archives": archives.map((p) => p.toMap()).toList(),
};
}