isNotBlank function

  1. @Deprecated('Use `StringUtils.isNotBlank`')
bool isNotBlank(
  1. String? v
)

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

since 0.0.1

Implementation

@Deprecated('Use `StringUtils.isNotBlank`')
bool isNotBlank(String? v) => StringUtil.isNotBlank(v);