isBlank static method

bool? isBlank(
  1. Object? value
)

Checks if data is null or blank (empty or only contains whitespace).

Implementation

static bool? isBlank(Object? value) {
  return _isEmpty(value);
}