EvaluatedListExpr class

A list of evaluated expressions.

Inheritance
Mixed in types
Annotations

Constructors

EvaluatedListExpr(List<EvaluatedExpr> list, {bool retry = false})
const

Properties

asNum num
Try to turn this expression into a num.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
length int
Get the length of this list.
no setterinherited
retry bool
Should this expression be re-evaluated if something goes wrong?
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
widgetExpr WidgetExpr?
Try to turn this expression into a WidgetExpr.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
property(String name) EvaluatedExpr
Get the name property of this expression.
override
toDisplayString() String
Generate a display string for this expression.
override
toString() String
A string representation of this object.
inherited
withRetry(bool retry) EvaluatedListExpr
Copy this expression with the given retry value.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited
operator [](int index) EvaluatedExpr
Access the indexth element of this list. Returns empty() if the index is out of bounds.
override