Returns true if this Short equals the specified object.
@override bool operator ==(Object other) { if (identical(this, other)) return true; return other is Short && _value == other._value; }