ValidatorInfo constructor
ValidatorInfo({
- required String? name,
- required String? suiAddress,
- required int votingPower,
- required int commissionRate,
- required BigInt nextEpochStake,
- required BigInt stakingPoolSuiBalance,
- required BigInt poolTokenBalance,
- required String? stakingPoolId,
- required int activationEpoch,
- String? imageUrl,
- String? projectUrl,
- String? description,
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,
this.imageUrl,
this.projectUrl,
this.description,
});