thousand method

String thousand(
  1. dynamic number
)

Implementation

String thousand(number) {
  return thousandsTrillions(
      thousands["1"],
      thousands["2"],
      thousands["39"],
      thousands["1199"],
      0,
      int.parse('$number'),
      (getNthReverse('$number', 4)));
}