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