mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-02-06 13:16:30 +00:00
21 lines
628 B
Dart
21 lines
628 B
Dart
|
import 'package:flutter/foundation.dart';
|
||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||
|
import 'package:stackwallet/providers/global/secure_store_provider.dart';
|
||
|
import 'package:stackwallet/services/tokens_service.dart';
|
||
|
import 'package:stackwallet/services/wallets_service.dart';
|
||
|
|
||
|
int _count = 0;
|
||
|
|
||
|
final tokensServiceChangeNotifierProvider =
|
||
|
ChangeNotifierProvider<TokensService>((ref) {
|
||
|
if (kDebugMode) {
|
||
|
_count++;
|
||
|
debugPrint(
|
||
|
"tokensServiceChangeNotifierProvider instantiation count: $_count");
|
||
|
}
|
||
|
|
||
|
return TokensService(
|
||
|
secureStorageInterface: ref.read(secureStoreProvider),
|
||
|
);
|
||
|
});
|