lowerCaseFirstofEach method

String lowerCaseFirstofEach()

Implementation

String lowerCaseFirstofEach() {
  return split(' ').map((str) => str.toLowerCase).join(' ');
}