A Dart library that removes trailing zeros from the end of a number string and gives you a nicely formatted number string.
Usage
print('0.010'.trimZero()); // 0.01
double price = 99.00;
print(price.toString().trimZero()); // 99
A Dart library that removes trailing zeros from the end of a number string and gives you a nicely formatted number string.
print('0.010'.trimZero()); // 0.01
double price = 99.00;
print(price.toString().trimZero()); // 99