negate method

bool? negate()

Implementation

bool? negate() {
  if (this == null) return null;
  return !this!;
}