LastValidatorPower constructor
LastValidatorPower({
- String? address,
- Int64? power,
Implementation
factory LastValidatorPower({
$core.String? address,
$fixnum.Int64? power,
}) {
final _result = create();
if (address != null) {
_result.address = address;
}
if (power != null) {
_result.power = power;
}
return _result;
}