EVMTransactionInfo constructor

EVMTransactionInfo({
  1. required int nonce,
  2. required int gasPrice,
  3. int? maxPriorityFeePerGas,
  4. required int gasLimit,
})

Implementation

EVMTransactionInfo({
  required this.nonce,
  required this.gasPrice,
  this.maxPriorityFeePerGas,
  required this.gasLimit,
});