toLowerCase static method

String toLowerCase(
  1. String s
)

Transforms s to lower-case.

Implementation

static String toLowerCase(String s) => s.toLowerCase();