isBlank static method

bool? isBlank(
  1. dynamic value
)

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

Implementation

static bool? isBlank(value) => _isEmpty(value);