TransactionInformation constructor

TransactionInformation({
  1. String? blockHash,
  2. required BlockNum blockNumber,
  3. required EthereumAddress from,
  4. required int gas,
  5. required EtherAmount gasPrice,
  6. required String hash,
  7. required Uint8List input,
  8. required int nonce,
  9. EthereumAddress? to,
  10. int? transactionIndex,
  11. required EtherAmount value,
  12. required BigInt r,
  13. required BigInt s,
  14. required int v,
})

Implementation

TransactionInformation(
    {this.blockHash,
    required this.blockNumber,
    required this.from,
    required this.gas,
    required this.gasPrice,
    required this.hash,
    required this.input,
    required this.nonce,
    this.to,
    this.transactionIndex,
    required this.value,
    required this.r,
    required this.s,
    required this.v});