import '../dtos/hero_dto.dart'; class HeroMapper { static 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?, ); } static List fromJsonList(List jsonList) { return jsonList.map((json) => fromJson(json as Map)).toList(); } }