EncryptedPropertyStub constructor

EncryptedPropertyStub({
  1. String? id,
  2. PropertyTypeStub? type,
  3. EncryptedTypedValue? typedValue,
  4. int? deletionDate,
  5. 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;