isNull function

bool isNull(
  1. dynamic value
)

Takes in a String/List and returns true if it is null, blank or empty

Implementation

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