Validator constructor

Validator(
  1. String operator_address,
  2. ValConsKey consensus_pubkey,
  3. bool jailed,
  4. BondStatus status,
  5. double tokens,
  6. double delegator_shares,
  7. ValidatorDescription description,
  8. double unbonding_height,
  9. DateTime unbonding_time,
  10. Commission commission,
  11. double min_self_delegation,
)

Implementation

Validator(
    this.operator_address,
    this.consensus_pubkey,
    this.jailed,
    this.status,
    this.tokens,
    this.delegator_shares,
    this.description,
    this.unbonding_height,
    this.unbonding_time,
    this.commission,
    this.min_self_delegation);