Files
easy_cc_flutter/lib/data/model/Currency.dart
hmalik144 700ddfd3eb Removal of api key
Network calls,
integration of retrofit api
added backup api
2022-09-19 22:26:09 +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();
}