upper method
Calls the sqlite function UPPER on this string. Please note that, in
most sqlite installations, this only affects ascii chars.
See also:
Implementation
Expression<String> upper() {
return FunctionCallExpression('UPPER', [this]);
}
Calls the sqlite function UPPER on this string. Please note that, in
most sqlite installations, this only affects ascii chars.
See also:
Expression<String> upper() {
return FunctionCallExpression('UPPER', [this]);
}