strEmpty function

bool strEmpty(
  1. String? val
)

Implementation

bool strEmpty(String? val) {
  return !strNoEmpty(val);
}