isNotEmpty static method

bool isNotEmpty(
  1. String? value
)

true if the value is not null and is a zero length String

Implementation

static bool isNotEmpty(String? value) {
  return !isEmpty(value);
}