isNull static method

bool isNull(
  1. Object? value
)

Checks if data is null.

Implementation

static bool isNull(Object? value) => value == null;