Network constructor

Network({
  1. int? lastEthereumBlock,
  2. int? lastSynchedBlock,
  3. Batch? lastBatch,
  4. int? currentSlot,
  5. List<Forger>? nextForgers,
})

Implementation

Network(
    {this.lastEthereumBlock,
    this.lastSynchedBlock,
    this.lastBatch,
    this.currentSlot,
    this.nextForgers});