isEmptyString function

bool isEmptyString(
  1. String x
)

Implementation

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