How can I trim the leading zeros from a string of numbers in Dart?
For example:
One way to do it without regex is..
String result = int.parse('012345').toString();