LastValidatorPower constructor

LastValidatorPower({
  1. String? address,
  2. 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;
}