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,12 @@
class Currency {
String? from;
String? to;
double? rate;
Currency(this.from, this.to, this.rate);
}
/// Mapper class to convert any object to [Currency]
abstract class CurrencyMapper {
Currency convert();
}