import 'package:json_annotation/json_annotation.dart'; import 'package:equatable/equatable.dart'; part 'phone_num_model.g.dart'; @JsonSerializable() class PhoneNumModel extends Equatable{ final String num; final int time; factory PhoneNumModel.fromJson(Map json) =>_$PhoneNumModelFromJson(json); const PhoneNumModel({ required this.num, required this.time, }); @override List get props => [num,time,]; }