mirror of
https://github.com/hmalik144/easy_cc_flutter.git
synced 2026-03-18 07:35:54 +00:00
Removal of api key
Network calls, integration of retrofit api added backup api
This commit is contained in:
11
lib/data/model/Currency.dart
Normal file
11
lib/data/model/Currency.dart
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user