BusinessEventListModel.fromJson constructor
Implementation
factory BusinessEventListModel.fromJson(Map<String, dynamic> json) =>
BusinessEventListModel(
code: json["code"],
status: json["status"],
message: json["message"],
data: json["data"] == null
? []
: List<BusinessEventList>.from(
json["data"]!.map((x) => BusinessEventList.fromJson(x))),
);