notEq method

bool notEq(
  1. num numberNotToEqual
)

Number not equal to one passed in param

2.notEq(4) == true
2.notEq(2) == false
2.0.notEq(2.0) == false

Implementation

bool notEq(num numberNotToEqual) => this != numberNotToEqual;