to_currency

Add currency to amount

import 'package:to_currency/to_currency.dart';

String amount = toCurrency(
    amount: 1000,
    currency: "XOF",
    currencyPrefixed: false,
    separator: ".",
    decimalSeparator: ",",
    decimalDigits: 2,
);

String cfa = toCFA(2000)

String dollar = toDollar(50.5, decimalDigits: 2);

Getting Started

Add this to your package's pubspec.yaml file:

Libraries

to_currency