ecb_fx

Current, 90-day and historical Foreign Exchange (FX) rates from the European Central Bank.


License
BSD-3-Clause

Documentation

ecb_fx

Foreign Exchange (FX) rates from the European Central Bank. The rates refresh around 4 PM CET daily.

Usage

A simple usage example:

import 'dart:async';

import 'package:ecb_fx/ecb_fx.dart';
import 'package:http_client/console.dart' as http;

Future main() async {
  http.Client httpClient = new http.ConsoleClient();
  EcbFxClient ecbFxClient = new EcbFxClient(httpClient);

  EcbFxRates rates = await ecbFxClient.getCurrent();
  print('Current USD/EUR rate: ${rates.getDecimal('USD')}');
}

Links