lower static method

String lower(
  1. String value
)

Lowercases value.

Implementation

static String lower(String value) => value.toLowerCase();