Pool constructor

const Pool({
  1. List<Coin> notBondedTokens = const [],
  2. List<Coin> bondedTokens = const [],
  3. List<DecCoin> votingPowerWeights = const [],
})

Implementation

const Pool({
  this.notBondedTokens = const [],
  this.bondedTokens = const [],
  this.votingPowerWeights = const [],
});