Batch constructor

Batch({
  1. int? itemId,
  2. int? batchNum,
  3. int? ethereumBlockNum,
  4. String? ethereumBlockHash,
  5. String? timestamp,
  6. String? forgerAddr,
  7. dynamic collectedFees,
  8. double? historicTotalCollectedFeesUSD,
  9. String? stateRoot,
  10. int? numAccounts,
  11. String? exitRoot,
  12. int? forgeL1TransactionsNum,
  13. int? slotNum,
  14. int? forgedTransactions,
})

Implementation

Batch(
    {this.itemId,
    this.batchNum,
    this.ethereumBlockNum,
    this.ethereumBlockHash,
    this.timestamp,
    this.forgerAddr,
    this.collectedFees,
    this.historicTotalCollectedFeesUSD,
    this.stateRoot,
    this.numAccounts,
    this.exitRoot,
    this.forgeL1TransactionsNum,
    this.slotNum,
    this.forgedTransactions});