factory Document.fromJson(Map<String, dynamic> json) { return Document( description: json['description'] ?? '', doctype: json['doctype'] ?? '', logo: json['logo'] ?? '', ); }