remove redundant providers

This commit is contained in:
julian 2023-10-31 11:18:37 -06:00
parent ce7d10ef16
commit 6bf1e7bbdc
2 changed files with 0 additions and 54 deletions

View file

@ -1,27 +0,0 @@
/*
* This file is part of Stack Wallet.
*
* Copyright (c) 2023 Cypher Stack
* All Rights Reserved.
* The code is distributed under GPLv3 license, see LICENSE file for details.
* Generated by Cypher Stack on 2023-05-26
*
*/
import 'package:flutter/foundation.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:stackwallet/services/coins/manager.dart';
import 'package:stackwallet/services/wallets.dart';
import 'package:stackwallet/utilities/listenable_list.dart';
int _count = 0;
final favoritesProvider =
ChangeNotifierProvider<ListenableList<ChangeNotifierProvider<Manager>>>(
(ref) {
if (kDebugMode) {
_count++;
}
return favorites;
});

View file

@ -1,27 +0,0 @@
/*
* This file is part of Stack Wallet.
*
* Copyright (c) 2023 Cypher Stack
* All Rights Reserved.
* The code is distributed under GPLv3 license, see LICENSE file for details.
* Generated by Cypher Stack on 2023-05-26
*
*/
import 'package:flutter/foundation.dart';
import 'package:flutter_riverpod/flutter_riverpod.dart';
import 'package:stackwallet/services/coins/manager.dart';
import 'package:stackwallet/services/wallets.dart';
import 'package:stackwallet/utilities/listenable_list.dart';
int _count = 0;
final nonFavoritesProvider =
ChangeNotifierProvider<ListenableList<ChangeNotifierProvider<Manager>>>(
(ref) {
if (kDebugMode) {
_count++;
}
return nonFavorites;
});