mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
16 lines
418 B
Dart
16 lines
418 B
Dart
|
import 'package:stackwallet/db/isar/main_db.dart';
|
||
|
import 'package:stackwallet/utilities/flutter_secure_storage_interface.dart';
|
||
|
|
||
|
class WalletsService {
|
||
|
late final SecureStorageInterface _secureStore;
|
||
|
late final MainDB _mainDB;
|
||
|
|
||
|
WalletsService({
|
||
|
required SecureStorageInterface secureStorageInterface,
|
||
|
required MainDB mainDB,
|
||
|
}) {
|
||
|
_secureStore = secureStorageInterface;
|
||
|
_mainDB = mainDB;
|
||
|
}
|
||
|
}
|