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,
  8. required String? stakingPoolId,
  9. required int activationEpoch,
})

Implementation

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