SuiExecuteTransactionResponse constructor

SuiExecuteTransactionResponse(
  1. TransactionDigest digest,
  2. TransactionEffects? effects,
  3. String? timestampMs,
  4. String? checkpoint,
  5. TransactionEvents events,
  6. SuiTransactionBlock? transaction,
  7. bool? confirmedLocalExecution,
  8. List? objectChanges,
  9. List<BalanceChange> balanceChanges,
  10. List? errors,
  11. Map<String, dynamic> json,
)

Implementation

SuiExecuteTransactionResponse(
  this.digest,
  this.effects,
  this.timestampMs,
  this.checkpoint,
  this.events,
  this.transaction,
  this.confirmedLocalExecution,
  this.objectChanges,
  this.balanceChanges,
  this.errors,
  this.json,
);