fromJSON static method
Implementation
static ListOfProperties fromJSON(Map<String, dynamic> data) {
return ListOfProperties(
properties: (data["properties"] as List<dynamic>).map((x0) => DecryptedPropertyStub.fromJSON(x0) ).toSet()
);
}
static ListOfProperties fromJSON(Map<String, dynamic> data) {
return ListOfProperties(
properties: (data["properties"] as List<dynamic>).map((x0) => DecryptedPropertyStub.fromJSON(x0) ).toSet()
);
}