mirror of
https://github.com/hmalik144/easy_cc_flutter.git
synced 2025-12-10 03:05:34 +00:00
11 lines
157 B
Dart
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();
|
|
} |