DataAttachment constructor

DataAttachment({
  1. String? couchDbAttachmentId,
  2. String? objectStoreAttachmentId,
  3. List<String>? utis,
})

Implementation

DataAttachment({
		String? couchDbAttachmentId,
		String? objectStoreAttachmentId,
		List<String>? utis
	}) : couchDbAttachmentId = couchDbAttachmentId ?? null,
	objectStoreAttachmentId = objectStoreAttachmentId ?? null,
	utis = utis ?? [];