normalized method

String normalized()

Implementation

String normalized() {
  /// Returns a normalized [String].
  /// It receives a [String] as a parameter.
  /// It returns a [String] with the diacritics removed and all characters in lowercase.
  /// If the [String] is null, it returns an empty [String].
  return removeDiacritics(this).toLowerCase();
}