AptosRequestSimulateTransaction constructor

AptosRequestSimulateTransaction({
  1. required List<int> signedTransactionData,
  2. bool? estimateGasUnitPrice,
  3. bool? estimateMaxGasAmount,
  4. bool? estimatePrioritizedGasUnitPrice,
})

Implementation

AptosRequestSimulateTransaction({
  required List<int> signedTransactionData,
  this.estimateGasUnitPrice,
  this.estimateMaxGasAmount,
  this.estimatePrioritizedGasUnitPrice,
}) : signedTransactionData = signedTransactionData.asImmutableBytes;