normalized function

String normalized(
  1. String source
)

Implementation

String normalized(String source) {
  return _removeDiacritics(source).toLowerCase();
}