Checks if data is null or blank (empty or only contains whitespace).
static bool? isBlank(Object? value) { return _isEmpty(value); }