AvgExpression class final

Inheritance
Available extensions

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
value Expr<num?>
final

Methods

add(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
addValue(double other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
asBlob() Expr<Uint8List?>

Available on Expr<Null>, provided by the ExpressionNull extension

Cast as Expr<Uint8List?> using CAST(NULL AS BLOB).
asBool() Expr<bool?>

Available on Expr<Null>, provided by the ExpressionNull extension

Cast as Expr<bool?> using CAST(NULL AS BOOLEAN).
asDateTime() Expr<DateTime?>

Available on Expr<Null>, provided by the ExpressionNull extension

Cast as Expr<DateTime?> using CAST(NULL AS TIMESTAMP).
asDouble() Expr<double?>

Available on Expr<Null>, provided by the ExpressionNull extension

Cast as Expr<double?> using CAST(NULL AS DOUBLE PRECISION).
asInt() Expr<int>

Available on Expr<double>, provided by the ExpressionDouble extension

Cast as integer.
asInt() Expr<int?>

Available on Expr<Null>, provided by the ExpressionNull extension

Cast as Expr<int?> using CAST(NULL AS BIGINT).
asString() Expr<String>

Available on Expr<double>, provided by the ExpressionDouble extension

Cast as string.
asString() Expr<String?>

Available on Expr<Null>, provided by the ExpressionNull extension

Cast as Expr<String?> using CAST(NULL AS TEXT).
divide(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
divideValue(double other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
multiply(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
multiplyValue(double other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
subtract(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
subtractValue(double other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
toString() String
A string representation of this object.
inherited

Operators

operator *(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
operator +(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
operator -(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
operator /(Expr<double> other) Expr<double>

Available on Expr<double>, provided by the ExpressionDouble extension

Add this expression to other.
operator ==(Object other) bool
The equality operator.
inherited