lowerCase function

String lowerCase(
  1. String string
)

Converts String, as space separated words, to lower case.

Implementation

String lowerCase(String string) => _lowerCase(string);