DeletedAttachment constructor

DeletedAttachment({
  1. String? couchDbAttachmentId,
  2. String? objectStoreAttachmentId,
  3. String? key,
  4. int? deletionTime,
})

Implementation

DeletedAttachment({
		String? couchDbAttachmentId,
		String? objectStoreAttachmentId,
		String? key,
		int? deletionTime
	}) : couchDbAttachmentId = couchDbAttachmentId ?? null,
	objectStoreAttachmentId = objectStoreAttachmentId ?? null,
	key = key ?? null,
	deletionTime = deletionTime ?? null;