CoinBalance constructor

CoinBalance(
  1. String coinType,
  2. int coinObjectCount,
  3. BigInt totalBalance,
  4. dynamic lockedBalance,
)

Implementation

CoinBalance(
  this.coinType,
  this.coinObjectCount,
  this.totalBalance,
  this.lockedBalance,
);