| 1 | import 'package:cake_wallet/src/screens/auth/auth_page.dart'; |
| 2 | import 'package:cw_core/wallet_type.dart'; |
| 3 | |
| 4 | typedef AuthPasswordHandler = Future<void> Function(String); |
| 5 | |
| 6 | class WalletUnlockArguments { |
| 7 | WalletUnlockArguments( |
| 8 | {required this.callback, this.walletName, this.walletType, this.authPasswordHandler}); |
| 9 | |
| 10 | final OnAuthenticationFinished callback; |
| 11 | final AuthPasswordHandler? authPasswordHandler; |
| 12 | final String? walletName; |
| 13 | final WalletType? walletType; |
| 14 | } |