isNull function

bool isNull(
  1. dynamic value
)

True if the dynamic value is null

since 0.0.1

Implementation

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