map method

String? map(
  1. String? string
)

Map a string to lower case in a locale-sensitive manner.

Implementation

String? map(String? string) {
  return _charMapper(string);
}