factory Image.fromJson(Map<String, dynamic> json) { return Image( src: json['src'] ?? '', alt: json['alt'] ?? '', ); }