import 'package:hadi_hoda_flutter/features/intro/domain/entity/intro_entity.dart'; class IntroModel extends IntroEntity { const IntroModel({ super.id, }); factory IntroModel.fromJson(Map json) { return IntroModel( id: json['id'], ); } }