WatchAddressRegisteredEvent constructor

WatchAddressRegisteredEvent({
  1. required String walletId,
  2. required String address,
  3. required bool success,
  4. String? error,
})

Implementation

WatchAddressRegisteredEvent({
  required this.walletId,
  required this.address,
  required this.success,
  this.error,
});