ContactListenBean.fromJson constructor

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

Implementation

factory ContactListenBean.fromJson(Map<String, dynamic> json) => ContactListenBean(
      type: json["type"],
      savedSuccess: json["savedSuccess"] ?? -1,
      savedFail: json["savedFail"] ?? -1,
    );