operator == method
Tests whether two JavaScript values are strict equal, as compared by the JS === operator.
Implementation
@override
bool operator ==(Object other) =>
identical(this, other) ||
other is JSValue &&
runtimeType == other.runtimeType &&
JSValueIsStrictEqual(context.ref, _ref, other._ref);