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;
}