isBlank function

bool isBlank(
  1. String x
)

Implementation

bool isBlank(String x) => isNull(x) || x.trim().isEmpty;