normalizedEquals static method
Implementation
static bool normalizedEquals({
required String value,
required String other,
}) {
final normalizedValue = normalize(value);
final normalizedOther = normalize(other);
return normalizedValue == normalizedOther;
}