factory Link.fromJson(Map<String, dynamic> json) { return Link( href: json['href'] ?? '', text: json['text'] ?? '', ); }