isNotEmpty static method

bool isNotEmpty(
  1. String? string
)

Implementation

static bool isNotEmpty(String? string) {
  if (null == string || string.isEmpty ) {
    return false;
  }
  return true;
}