Staking_CandidateBasicInfo constructor
Implementation
factory Staking_CandidateBasicInfo({
$core.String? name,
$core.String? operatorAddress,
$core.String? rewardAddress,
}) {
final result = create();
if (name != null) result.name = name;
if (operatorAddress != null) result.operatorAddress = operatorAddress;
if (rewardAddress != null) result.rewardAddress = rewardAddress;
return result;
}