not method

Not not([
  1. dynamic value
])

Returns logical inverse of the arguments given

Implementation

Not not([value]) => Not(value == null ? true : value);