isNotNullOrEmpty static method

bool isNotNullOrEmpty(
  1. String? s
)

Checks if the given String s is not null or empty

Implementation

static bool isNotNullOrEmpty(String? s) => !isNullOrEmpty(s);