UWalletChargeParams constructor

UWalletChargeParams({
  1. required String userId,
  2. required double amount,
  3. String? walletId,
})

Implementation

UWalletChargeParams({
  required this.userId,
  required this.amount,
  this.walletId,
});