Ability to cache currency selection

This commit is contained in:
2022-09-07 00:14:23 +01:00
parent 3c1ecd76c2
commit c0942903ba
13 changed files with 415 additions and 172 deletions

View File

@@ -0,0 +1,6 @@
class CurrencyPair {
String? currencyOne;
String? currencyTwo;
CurrencyPair(this.currencyOne, this.currencyTwo);
}