Ability to cache currency selection (#5)

This commit is contained in:
2022-09-07 00:16:49 +01:00
committed by GitHub
parent 3c1ecd76c2
commit 5104fc674e
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);
}