mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-12 21:54:31 +00:00
61c971973c
and: - available -> supported - do not load simplex data on desktop menu item action
6 lines
266 B
Dart
6 lines
266 B
Dart
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:stackwallet/models/buy/simplex/simplex_supported_currencies.dart';
|
|
|
|
final supportedSimplexCurrenciesProvider = Provider<SimplexSupportedCurrencies>(
|
|
(ref) => SimplexSupportedCurrencies(),
|
|
);
|