Files
easy_cc_flutter/lib/data/model/currency.dart

12 lines
218 B
Dart

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();
}