isNull static method

bool isNull(
  1. dynamic value
)

Checks if data is null.

Implementation

static bool isNull(dynamic value) => value == null;