class HeroDto { final int id; final String name; final String? portraitUrl; final String? description; HeroDto({ required this.id, required this.name, this.portraitUrl, this.description, }); factory HeroDto.fromJson(Map json) { return HeroDto( id: json['id'] as int, name: json['name'] as String, portraitUrl: json['images']?['icon_image_small'] as String?, description: json['description']?['lore'] as String?, ); } }