ErrorEvent constructor

ErrorEvent({
  1. String? walletId,
  2. required String source,
  3. required String message,
  4. String? stackTrace,
})

Implementation

ErrorEvent({
  this.walletId,
  required this.source,
  required this.message,
  this.stackTrace,
});