Metrics constructor

Metrics({
  1. double? transactionsPerBatch,
  2. double? batchFrequency,
  3. double? transactionsPerSecond,
  4. int? tokenAccounts,
  5. int? wallets,
  6. double? avgTransactionFee,
  7. double? estimatedTimeToForgeL1,
})

Implementation

Metrics(
    {this.transactionsPerBatch,
    this.batchFrequency,
    this.transactionsPerSecond,
    this.tokenAccounts,
    this.wallets,
    this.avgTransactionFee,
    this.estimatedTimeToForgeL1});