ltrim method

String ltrim()

trims leading whitespace

Implementation

String ltrim() {
  return replaceFirst(RegExp(r'^\s+'), '');
}