You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
275 B
13 lines
275 B
import 'package:hadi_hoda_flutter/features/home/domain/entity/home_entity.dart';
|
|
|
|
class HomeModel extends HomeEntity {
|
|
const HomeModel({
|
|
super.id,
|
|
});
|
|
|
|
factory HomeModel.fromJson(Map<String, dynamic> json) {
|
|
return HomeModel(
|
|
id: json['id'],
|
|
);
|
|
}
|
|
}
|