Project lint checked and step added to config.yml

This commit is contained in:
2022-10-02 17:43:52 +01:00
parent e07e10079e
commit 8100f0b879
26 changed files with 71 additions and 63 deletions

View File

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