Files
easy_cc_flutter/lib/data/model/Currency.dart
hmalik144 8cc19f0dc9 Removal of api key
Network calls,
integration of retrofit api
added backup api
2022-09-19 22:29:10 +01:00

11 lines
157 B
Dart

class Currency {
String? from;
String? to;
double? rate;
Currency(this.from, this.to, this.rate);
}
abstract class Mapper {
Currency convert();
}