UWalletTransferParams constructor

UWalletTransferParams({
  1. required String receiverId,
  2. required double amount,
  3. required List<int> tagWalletTxn,
  4. String? senderId,
  5. String? detail1,
})

Implementation

UWalletTransferParams({
  required this.receiverId,
  required this.amount,
  required this.tagWalletTxn,
  this.senderId,
  this.detail1,
});