TransactionInfo constructor
const
TransactionInfo({
- required List<
AccessListEntry> accessList, - required String blockHash,
- required int blockNumber,
- required BigInt? chainId,
- required String from,
- required int gas,
- required int? gasPrice,
- required String hash,
- required String input,
- required int? maxFeePerGas,
- required int? maxPriorityFeePerGas,
- required int nonce,
- required String r,
- required String s,
- required String? to,
- required int transactionIndex,
- required int type,
- required int v,
- required BigInt value,
- required int? yParity,
Creates a new instance of the TransactionInfo class.
Implementation
const TransactionInfo({
required this.accessList,
required this.blockHash,
required this.blockNumber,
required this.chainId,
required this.from,
required this.gas,
required this.gasPrice,
required this.hash,
required this.input,
required this.maxFeePerGas,
required this.maxPriorityFeePerGas,
required this.nonce,
required this.r,
required this.s,
required this.to,
required this.transactionIndex,
required this.type,
required this.v,
required this.value,
required this.yParity,
});