paylike_currencies 1.0.2 paylike_currencies: ^1.0.2 copied to clipboard
Covers all the currencies supported on paylike.io platform and provides a handy interface for them
example/paylike_currencies_example.dart
import 'package:paylike_currencies/paylike_currencies.dart';
void main() {
var currencies = PaylikeCurrencies();
var eur = currencies.byCode(CurrencyCode.EUR);
print(eur.code);
var all = currencies.list();
for (var currency in all) {
print(currency);
}
}