An open API service indexing awesome lists of open source software.

https://github.com/champ96k/int_to_words

This package allows you to easily convert numbers to words.
https://github.com/champ96k/int_to_words

dart dart-package flutter int-to-words numbers-to-words pub pub-package

Last synced: 2 days ago
JSON representation

This package allows you to easily convert numbers to words.

Awesome Lists containing this project

README

          

# Numbers to words

This package allows you to easily convert numbers to words.

## Usage

[Example](https://github.com/champ96k/int_to_words/tree/master/example)

To use this package :

- add the dependency to your pubspec.yaml file.

```yaml
dependencies:
flutter:
sdk: flutter
int_to_words: ^0.0.4
```

### How to use

```dart
final NumberToWords _number = NumberToWords();

final _num = _number.convert(022); -> Twenty Two

final _num1 = _number.convert(47474747); -> Forty Seven Million Four Hundred and Seventy Four Thousand Seven Hundred and Forty Seven


```

### Created & Maintained By

[Tushar Nikam](https://champ96k.github.io)