ContactConfigBean.fromJson constructor

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

Implementation

factory ContactConfigBean.fromJson(Map<String, dynamic> json) => ContactConfigBean(
      supported: json["supported"],
      count: json["count"],
      width: json["width"],
      height: json["height"],
    );