Trims characters from the left side of the string.
String leftTrim([String? chars]) => (chars != null) ? replaceAll(RegExp('^[$chars]+'), '') : replaceAll(RegExp(r'^\s+'), '');