DeletedAttachment.fromJSON constructor

DeletedAttachment.fromJSON(
  1. Map<String, dynamic> data
)

Implementation

factory DeletedAttachment.fromJSON(Map<String, dynamic> data) {
	return DeletedAttachment(
		couchDbAttachmentId: (data["couchDbAttachmentId"] as String?),
		objectStoreAttachmentId: (data["objectStoreAttachmentId"] as String?),
		key: (data["key"] as String?),
		deletionTime: (data["deletionTime"] as int?)
	);
}