isBlank function

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

Returns true if the provided String value v is null or blank (whitespace only)

since 0.0.1

Implementation

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