SyncState constructor

const SyncState({
  1. required int startingBlock,
  2. required int currentBlock,
  3. required int highestBlock,
})

Implementation

const SyncState({
  required this.startingBlock,
  required this.currentBlock,
  required this.highestBlock,
});