import 'package:hadi_hoda_flutter/features/level/domain/entity/prize_entity.dart'; class PrizeModel extends PrizeEntity { PrizeModel({ super.id, super.afterLevel, super.title, super.imageURL, super.animationURL, }); factory PrizeModel.fromJson(Map json) { return PrizeModel( id: json['id'], afterLevel: json['after_level'], title: json['title'], imageURL: json['image_url'], animationURL: json['animation_url'], ); } }