UChargeInternet.fromMap constructor

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

Implementation

factory UChargeInternet.fromMap(Map<String, dynamic> json) => UChargeInternet(
  operator: json["operator"],
  title: json["title"],
  logo: json["logo"],
  pinAmountsList: _amounts(json["pinAmountsList"]),
  topupAmountsList: _amounts(json["topupAmountsList"]),
);