DeletedAttachment.fromJSON constructor
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?)
);
}