WalletSetupScreen constructor

const WalletSetupScreen({
  1. Key? key,
  2. required WalletReadyCallback onWalletReady,
  3. Map<String, List<String>> existingWalletsByRootId = const {},
  4. WalletUiText text = const WalletUiText(),
  5. WalletRegistryService? walletService,
  6. WalletBackupGateway? backupGateway,
  7. bool requireBackupConfirmation = true,
  8. bool protectSensitiveContent = true,
})

Implementation

const WalletSetupScreen({
  super.key,
  required this.onWalletReady,
  this.existingWalletsByRootId = const {},
  this.text = const WalletUiText(),
  this.walletService,
  this.backupGateway,
  this.requireBackupConfirmation = true,
  this.protectSensitiveContent = true,
});