TimestampCompleteEvent constructor

TimestampCompleteEvent({
  1. String? walletId,
  2. required String archiveId,
  3. String? transactionId,
  4. required bool success,
  5. String? error,
})

Implementation

TimestampCompleteEvent({
  this.walletId,
  required this.archiveId,
  this.transactionId,
  required this.success,
  this.error,
});