AlgodBlock constructor

AlgodBlock({
  1. required List<SignedTransactionWithAD> transactions,
  2. String? genesisHash,
  3. String? genesisId,
  4. String? previousBlockHash,
  5. BigInt? round,
  6. String? seed,
  7. int? timestamp,
  8. int? txnCounter,
})

Implementation

AlgodBlock({
  required this.transactions,
  this.genesisHash,
  this.genesisId,
  this.previousBlockHash,
  this.round,
  this.seed,
  this.timestamp,
  this.txnCounter,
});