notNull static method

bool notNull(
  1. dynamic value
)

Implementation

static bool notNull(dynamic value) {
  return value != null;
}