fromJSON static method

ListOfProperties fromJSON(
  1. Map<String, dynamic> data
)

Implementation

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