removeLeadingZeroes method

String removeLeadingZeroes()

Implementation

String removeLeadingZeroes() {
  return replaceFirst(RegExp(r'^0+'), '');
}