8 lines
212 B
Dart
Raw Permalink Normal View History

2022-07-03 20:52:22 +03:00
class Currency {
final String value;
const Currency(this.value);
static const Currency rub = Currency('RUB');
static const Currency usd = Currency('USD');
static const Currency eur = Currency('EUR');
}