isNotEmpty static method

bool isNotEmpty(
  1. String? string
)

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

Implementation

static bool isNotEmpty(String? string) => Empty.isNotEmpty(string);