factory Document.fromJson(Map<String, dynamic> map) { final id = map["__id"] ?? _generateId(); return Document(id: id.toString(), data: map); }