eqString property

Eq<String> eqString
getter/setter pair

Instance of Eq for String using the standard == operator.

Implementation

static Eq<String> eqString = _Eq((x, y) => x == y);