cake_wallet/lib/view_model/wallet_unlock_view_model.dart

9 lines
235 B
Dart
Raw Normal View History

import 'package:cake_wallet/core/execution_state.dart';
abstract class WalletUnlockViewModel {
String get walletName;
String get password;
void setPassword(String password);
ExecutionState get state;
Future<void> unlock();
}