TransactionRequest constructor

TransactionRequest({
  1. required String to,
  2. required String? from,
  3. BigInt? nonce,
  4. required BigInt gasLimit,
  5. required BigInt gasPrice,
  6. required BigInt value,
  7. required int chainId,
  8. Uint8List? data,
  9. num? type,
  10. BigInt? maxPriorityFeePerGas,
  11. BigInt? maxFeePerGas,
})

Implementation

TransactionRequest({
  required this.to,
  required this.from,
  this.nonce,
  required this.gasLimit,
  required this.gasPrice,
  required this.value,
  required this.chainId,
  this.data,
  this.type,
  this.maxPriorityFeePerGas,
  this.maxFeePerGas,
});