Removal of api key

Network calls,
integration of retrofit api
added backup api
This commit is contained in:
2022-09-19 22:13:37 +01:00
parent 5104fc674e
commit 8cc19f0dc9
16 changed files with 548 additions and 12 deletions

View File

@@ -0,0 +1,11 @@
class Currency {
String? from;
String? to;
double? rate;
Currency(this.from, this.to, this.rate);
}
abstract class Mapper {
Currency convert();
}