encode static method

Map<String, dynamic> encode(
  1. ListOfProperties value
)

Implementation

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