Odoo Flutter Mobile App using EKIKA's API Framework
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.
 
 
 
 
 
 

27 lines
570 B

class ContactList {
final int id;
final String name;
final dynamic email;
final dynamic image1920;
ContactList({required this.id, required this.name, required this.email, required this.image1920});
factory ContactList.fromJson(Map<String, dynamic> json) {
return ContactList(
id: json['id'],
name: json['name'],
email: json['email'],
image1920: json['image_1920'],
);
}
Map<String, dynamic> toJson() {
return {
'id': id,
'name': name,
'email': email,
'image1920': image1920,
};
}
}