Dart CI pub package package publisher

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

Development Guide

Libraries

trim_zero