UInternetPackageItem.fromMap constructor

UInternetPackageItem.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory UInternetPackageItem.fromMap(Map<String, dynamic> json) => UInternetPackageItem(
  id: json["id"],
  title: json["title"],
  amount: json["amount"],
  simType: json["simType"],
  duration: json["duration"],
  offerCode: json["offerCode"],
  packageDType: json["packageDType"],
  capacity: json["capacity"],
);