✨ Wallet
This commit is contained in:
@ -24,5 +24,26 @@ final walletCurrentProvider = AutoDisposeFutureProvider<SnWallet>.internal(
|
||||
@Deprecated('Will be removed in 3.0. Use Ref instead')
|
||||
// ignore: unused_element
|
||||
typedef WalletCurrentRef = AutoDisposeFutureProviderRef<SnWallet>;
|
||||
String _$transactionListNotifierHash() =>
|
||||
r'148ffb0ee9e3be3b92de432f314d8ee2f09e9a24';
|
||||
|
||||
/// See also [TransactionListNotifier].
|
||||
@ProviderFor(TransactionListNotifier)
|
||||
final transactionListNotifierProvider = AutoDisposeAsyncNotifierProvider<
|
||||
TransactionListNotifier,
|
||||
CursorPagingData<SnTransaction>
|
||||
>.internal(
|
||||
TransactionListNotifier.new,
|
||||
name: r'transactionListNotifierProvider',
|
||||
debugGetCreateSourceHash:
|
||||
const bool.fromEnvironment('dart.vm.product')
|
||||
? null
|
||||
: _$transactionListNotifierHash,
|
||||
dependencies: null,
|
||||
allTransitiveDependencies: null,
|
||||
);
|
||||
|
||||
typedef _$TransactionListNotifier =
|
||||
AutoDisposeAsyncNotifier<CursorPagingData<SnTransaction>>;
|
||||
// ignore_for_file: type=lint
|
||||
// ignore_for_file: subtype_of_sealed_class, invalid_use_of_internal_member, invalid_use_of_visible_for_testing_member, deprecated_member_use_from_same_package
|
||||
|
Reference in New Issue
Block a user