notNull function

bool notNull(
  1. dynamic property,
  2. ConstraintValidatorContext cvc
)

Implementation

bool notNull(dynamic property, ConstraintValidatorContext cvc) {
  return property != null;
}