ContactBean.fromJson constructor
Implementation
factory ContactBean.fromJson(Map<String, dynamic> json) => ContactBean(
id: json["id"],
width: json["width"],
height: json["height"],
address: json["address"],
name: json["name"],
number: json["number"],
avatar: json["avatar"],
timeout: json["timeout"],
);