UWalletChargeParams.fromMap constructor

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

Implementation

factory UWalletChargeParams.fromMap(Map<String, dynamic> json) => UWalletChargeParams(
  userId: json["userId"],
  walletId: json["walletId"],
  amount: json["amount"].toDouble(),
);