UWalletTxnResponse constructor

UWalletTxnResponse({
  1. required String id,
  2. required List<int> tags,
  3. required UBaseJson jsonData,
  4. required DateTime createdAt,
  5. required double amount,
  6. required String senderId,
  7. required String receiverId,
  8. required List<String> adminUserIds,
  9. UUserResponse? sender,
  10. UUserResponse? receiver,
  11. UUserResponse? creator,
  12. String? creatorId,
})

Implementation

UWalletTxnResponse({
  required this.id,
  required this.tags,
  required this.jsonData,
  required this.createdAt,
  required this.amount,
  required this.senderId,
  required this.receiverId,
  required this.adminUserIds,
  this.sender,
  this.receiver,
  this.creator,
  this.creatorId,
});