import 'package:pshared/models/wallet/money.dart'; class WalletBalance { final WalletMoney? available; final WalletMoney? pendingInbound; final WalletMoney? pendingOutbound; final DateTime? calculatedAt; const WalletBalance({ required this.available, required this.pendingInbound, required this.pendingOutbound, required this.calculatedAt, }); }