WalletSelectionDialog constructor

const WalletSelectionDialog({
  1. Key? key,
  2. required dynamic onWalletSelected(
    1. String
    ),
  3. required SolanaWalletPlugin walletPlugin,
})

Creates a wallet selection dialog.

Implementation

const WalletSelectionDialog({
  super.key,
  required this.onWalletSelected,
  required this.walletPlugin,
});