ImportCompleteEvent constructor

ImportCompleteEvent({
  1. required String walletId,
  2. required bool success,
  3. String? error,
  4. int addressCount = 0,
  5. int transactionCount = 0,
})

Implementation

ImportCompleteEvent({
  required this.walletId,
  required this.success,
  this.error,
  this.addressCount = 0,
  this.transactionCount = 0,
});