toLowerCase method

Iterable<String> toLowerCase()

Implementation

Iterable<String> toLowerCase() {
  return map((s) => s.toLowerCase());
}