isNotEmpty property

Expr<bool> get isNotEmpty

Check if the string is not empty.

This is equivalent to this != '' in SQL.

Implementation

Expr<bool> get isNotEmpty => isEmpty.not();