Blockchain constructor

Blockchain({
  1. required List<BlockchainInfo> blockchain,
  2. required List<int?> reverted,
  3. required int totalEpochs,
})

Implementation

Blockchain(
    {required this.blockchain,
    required this.reverted,
    required this.totalEpochs});