encode static method
Implementation
static Map<String, dynamic> encode(ListOfProperties value) {
Map<String, dynamic> entityAsMap = {
"properties" : value.properties.map((x0) => DecryptedPropertyStub.encode(x0)).toList()
};
return entityAsMap;
}