DecryptedPropertyStub constructor

DecryptedPropertyStub({
  1. String? id,
  2. PropertyTypeStub? type,
  3. DecryptedTypedValue? typedValue,
  4. int? deletionDate,
  5. Base64String? encryptedSelf,
})

Implementation

DecryptedPropertyStub({
		String? id,
		PropertyTypeStub? type,
		DecryptedTypedValue? typedValue,
		int? deletionDate,
		Base64String? encryptedSelf
	}) : id = id ?? null,
	type = type ?? null,
	typedValue = typedValue ?? null,
	deletionDate = deletionDate ?? null,
	encryptedSelf = encryptedSelf ?? null;