notBlank function

bool notBlank(
  1. String x
)

Implementation

bool notBlank(String x) => notNull(x) && x.trim().isNotEmpty;