isNotEmpty static method

bool isNotEmpty(
  1. String? str
)

Implementation

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