ChargeFundData.fromJson constructor

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

Implementation

factory ChargeFundData.fromJson(Map<String, dynamic> json) => ChargeFundData(
    amount: json["amount"],
    merchantName: json["merchant_name"],
    transactionId: json["transaction_id"],
);