ContactBean.fromJson constructor

ContactBean.fromJson(
  1. Map<String, dynamic> json
)

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"],
    );