CoinBalanceBreakdown constructor

CoinBalanceBreakdown({
  1. required BigInt total,
  2. required BigInt addressBalance,
  3. required BigInt coinBalance,
})

Implementation

CoinBalanceBreakdown({
  required this.total,
  required this.addressBalance,
  required this.coinBalance,
});