removeDecimalZero method

String removeDecimalZero()

Implementation

String removeDecimalZero() => this % 1 == 0 ? toInt().toString() : toString();