Health constructor

const Health({
  1. required int peers,
  2. required bool isSyncing,
  3. required bool shouldHavePeers,
})

Implementation

const Health({
  required this.peers,
  required this.isSyncing,
  required this.shouldHavePeers,
});