isNotEmpty static method

bool isNotEmpty(
  1. String? value
)

Implementation

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