EncryptedPropertyStub constructor
EncryptedPropertyStub({
- String? id,
- PropertyTypeStub? type,
- EncryptedTypedValue? typedValue,
- int? deletionDate,
- Base64String? encryptedSelf,
Implementation
EncryptedPropertyStub({
String? id,
PropertyTypeStub? type,
EncryptedTypedValue? typedValue,
int? deletionDate,
Base64String? encryptedSelf
}) : id = id ?? null,
type = type ?? null,
typedValue = typedValue ?? null,
deletionDate = deletionDate ?? null,
encryptedSelf = encryptedSelf ?? null;