mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 18:21:08 +00:00
61c971973c
and: - available -> supported - do not load simplex data on desktop menu item action
16 lines
493 B
Dart
16 lines
493 B
Dart
// import 'package:stackwallet/models/buy/response_objects/crypto.dart';
|
|
// import 'package:stackwallet/models/buy/response_objects/fiat.dart';
|
|
// import 'package:stackwallet/models/buy/response_objects/pair.dart';
|
|
|
|
class SimplexSupportedCurrencies {
|
|
dynamic supportedCryptos = [];
|
|
dynamic supportedFiats = [];
|
|
|
|
void updateSupportedCryptos(dynamic newCryptos) {
|
|
supportedCryptos = newCryptos;
|
|
}
|
|
|
|
void updateSupportedFiats(dynamic newFiats) {
|
|
supportedFiats = newFiats;
|
|
}
|
|
}
|