Last updated:
0 purchases
money to text
Money To Text #
With this flutter package, you can convert your money to text
Features #
Getting started #
No permission is needed.
Usage #
Please review the example folder
Supported Unit: $, €, ₺
Supported Language Turkish, English
Import Money Value: 2136.3 or 2136,30
Default Unit: ₺
Default Language: Turkish
Test with function
#
Example Function 1:
String moneyText = moneyToText(3456,50);
// Output: ÜçBin DörtYüzElliAltı Lira Elli Kuruş
copied to clipboard
Example Function 2:
String moneyText = moneyToText(3456,50, unit: MoneyUnit.turkishLira, lang: "tr");
// Output: ÜçBin DörtYüzElliAltı Lira Elli Kuruş
copied to clipboard
Example Function 3:
String moneyText = moneyToText(3456,50, unit: MoneyUnit.dollar, lang: "en");
// Output: ThreeThousand FourHundredFiftySix Dollars Fifty Cents
copied to clipboard
Example Function 4:
String moneyText = moneyToText(3456,50, unit: MoneyUnit.euro, lang: "en");
// Output: ThreeThousand FourHundredFiftySix Euros Fifty Cents
copied to clipboard
#
Additional information #
avseng.net
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.