ValidatorInfo constructor

ValidatorInfo({
  1. required String? name,
  2. required String? suiAddress,
  3. required int votingPower,
  4. required int commissionRate,
  5. required BigInt nextEpochStake,
  6. required BigInt stakingPoolSuiBalance,
  7. required BigInt poolTokenBalance,
})

Implementation

ValidatorInfo({
  required this.name,
  required this.suiAddress,
  required this.votingPower,
  required this.commissionRate,
  required this.nextEpochStake,
  required this.stakingPoolSuiBalance,
  required this.poolTokenBalance,
});