wrapTwoZeroes method

String wrapTwoZeroes()

Implementation

String wrapTwoZeroes() {
  return '00${replaceFirst(RegExp(r'^0+'), '')}';
}