notEquals method

bool notEquals(
  1. T? value
)

Checks for in-equality between the current T and the method value

Implementation

bool notEquals(T? value) => this != value;