toWords method

String toWords()

An extension method to convert a number to its words representation For ex. 111 will be converted to "one hundred and eleven"

Implementation

String toWords() => _toWords(false);