isNotBlank static method

bool isNotBlank(
  1. String? value
)

Implementation

static bool isNotBlank(String? value) {
  return !isBlank(value);
}