GetContactsEntity.fromJson constructor

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

Implementation

factory GetContactsEntity.fromJson(Map<String, dynamic> json) =>
    GetContactsEntity(
      status: json["status"],
      data: List<Datum>.from(json["data"].map((x) => Datum.fromJson(x))),
    );