ValidatorListHeader constructor

const ValidatorListHeader({
  1. required AccountType accountType,
  2. required int maxValidators,
})

Helper type to deserialize just the start of a ValidatorList.

Implementation

const ValidatorListHeader({
  required this.accountType,
  required this.maxValidators,
});