convertToEnglish static method
Converts the given number
to English words.
Example:
var englishResult = NumberWords.convertToEnglish(4500);
print(englishResult); // Output: "Four thousand five hundred"
Implementation
static String convertToEnglish(number) {
return NumberEnglish.convert(number);
}