menu
jetleaf_lang package
documentation
lang.dart
NumExtensions
notEquals method
notEquals method
dark_mode
light_mode
notEquals
method
bool
notEquals
(
num
other
)
Case in-equality check.
Parameters
other
: The value to compare
Returns
true
if this value does not equal the other value
false
otherwise
Implementation
bool notEquals(num other) => this != other;
jetleaf_lang package
documentation
lang
NumExtensions
notEquals method
NumExtensions extension on
num