VoteAccountStatus constructor

const VoteAccountStatus({
  1. required List<VoteAccount> current,
  2. required List<VoteAccount> delinquent,
})

Current and delinquent vote accounts.

Implementation

const VoteAccountStatus({
  required this.current,
  required this.delinquent,
});