Last updated:
0 purchases
number extension
This package is used to remove large numeric values from the value and add numeric extension to it like Million, Billion, etc.
The package supports Internation System and Indian System.
For using International system, follow the below snipit.
// This function returns String
String result = NumberExtension.internationSystem(100000);
//Result: 100 K
copied to clipboard
For using Indian system, follow the below snipit.
// This function returns String
String result = NumberExtension.indianSystem(100000);
//Result: 1 Lac
copied to clipboard
For controlling the points after value, use the following optional parameter:
String result = NumberExtension.internationSystem(1554400, numbersAfterPoint: 3);
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.