Checks if two strings are equal.
final eq = StringEq(); print(eq.equals('hello', 'hello')); // Outputs: true
@override bool equals(String x, String y) => x == y;