isNotBlank function Null safety
- 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;
True if the provided String value v
is not null and is not blank (whitespaces)
since 0.0.1
bool isNotBlank(final String? v) => isNotNull(v) && v!.trim().isNotEmpty;