WalletCreatedEvent constructor

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

Implementation

WalletCreatedEvent({
  required this.walletId,
  this.rootAddress,
  required this.success,
  this.error,
});