ExpressionStringToLowerCase class final

Inheritance
Available extensions

Properties

hashCode int
The hash code for this object.
no setterinherited
isEmpty Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string is empty.
no setter
isNotEmpty Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string is not empty.
no setter
length Expr<int>

Available on Expr<String>, provided by the ExpressionString extension

Get the length of the string.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value Expr<String>
final

Methods

asDouble() Expr<double>

Available on Expr<String>, provided by the ExpressionString extension

Cast as double.
asInt() Expr<int>

Available on Expr<String>, provided by the ExpressionString extension

Cast as integer.
contains(Expr<String> substring) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string contains substring.
containsValue(String substring) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string contains substring.
endsWith(Expr<String> value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string ends with value.
endsWithValue(String value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string ends with value.
equals(Expr<String?> value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Compare this expression to value using = in SQL coalesced to FALSE.
equalsValue(String? value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Compare this expression to value using = in SQL coalesced to FALSE.
greaterThan(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
greaterThanOrEqual(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
greaterThanOrEqualValue(String other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
greaterThanValue(String other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
lessThan(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
lessThanOrEqual(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
lessThanOrEqualValue(String other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
lessThanValue(String other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
like(String pattern) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Matches pattern where % is one or more characters, and _ is one character.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
notEquals(Expr<String?> value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Compare this expression to value using <> in SQL.
notEqualsValue(String? value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Compare this expression to value using <> in SQL.
startsWith(Expr<String> value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string starts with value.
startsWithValue(String value) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if the string starts with value.
toLowerCase() Expr<String>

Available on Expr<String>, provided by the ExpressionString extension

Converts the string to lower case.
toString() String
A string representation of this object.
inherited
toUpperCase() Expr<String>

Available on Expr<String>, provided by the ExpressionString extension

Converts the string to upper case.

Operators

operator <(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
operator <=(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
operator ==(Object other) bool
The equality operator.
inherited
operator >(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.
operator >=(Expr<String> other) Expr<bool>

Available on Expr<String>, provided by the ExpressionString extension

Check if this expression is less than other.