UChargeInternetPreDefinedAmounts.fromMap constructor

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

Implementation

factory UChargeInternetPreDefinedAmounts.fromMap(Map<String, dynamic> json) => UChargeInternetPreDefinedAmounts(
  title: json["title"],
  amount: (json["amount"] as num).toDouble(),
);