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.
22 lines
468 B
22 lines
468 B
4 years ago
|
class ConvenientPhoneModel {
|
||
|
int id;
|
||
|
String name;
|
||
|
String tel;
|
||
|
|
||
|
ConvenientPhoneModel({this.id, this.name, this.tel});
|
||
|
|
||
|
ConvenientPhoneModel.fromJson(Map<String, dynamic> json) {
|
||
|
id = json['id'];
|
||
|
name = json['name'];
|
||
|
tel = json['tel'];
|
||
|
}
|
||
|
|
||
|
Map<String, dynamic> toJson() {
|
||
|
final Map<String, dynamic> data = new Map<String, dynamic>();
|
||
|
data['id'] = this.id;
|
||
|
data['name'] = this.name;
|
||
|
data['tel'] = this.tel;
|
||
|
return data;
|
||
|
}
|
||
|
}
|