SenderTransaction constructor

SenderTransaction({
  1. required String digest,
  2. required int? timestampMs,
  3. required bool success,
  4. required List<TxBalanceChange> balanceChanges,
  5. String? senderAddress,
  6. bool isProgrammableTransaction = false,
  7. List<String> commandTypes = const [],
  8. bool commandTypesTruncated = false,
  9. TransactionGasSummary? gasSummary,
  10. List<TxObjectChange> objectChanges = const [],
  11. bool balanceChangesTruncated = false,
  12. bool objectChangesTruncated = false,
})

Implementation

SenderTransaction({
  required this.digest,
  required this.timestampMs,
  required this.success,
  required this.balanceChanges,
  this.senderAddress,
  this.isProgrammableTransaction = false,
  this.commandTypes = const [],
  this.commandTypesTruncated = false,
  this.gasSummary,
  this.objectChanges = const [],
  this.balanceChangesTruncated = false,
  this.objectChangesTruncated = false,
});