fromJSON static method
Implementation
static EncryptedPropertyStub fromJSON(Map<String, dynamic> data) {
return EncryptedPropertyStub(
id: (data["id"] as String?),
type: data["type"] == null ? null : PropertyTypeStub.fromJSON(data["type"]),
typedValue: data["typedValue"] == null ? null : EncryptedTypedValue.fromJSON(data["typedValue"]),
deletionDate: (data["deletionDate"] as int?),
encryptedSelf: (data["encryptedSelf"] as Base64String?)
);
}