isNotBlank function

bool isNotBlank(
  1. String? v
)

True if the provided String value v is not null and is not blank (whitespaces)

since 0.0.1

Implementation

bool isNotBlank(final String? v) => isNotNull(v) && v!.trim().isNotEmpty;