TransactionInformation.noSignature constructor

TransactionInformation.noSignature({
  1. required 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. required EthereumAddress? to,
  10. required int? transactionIndex,
  11. required EtherAmount value,
})

Implementation

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