length property

Expression<int> get length

Returns an expression evaluating to the length of this array.

Implementation

Expression<int> get length {
  return FunctionCallExpression('array_length', [this, const Constant(1)]);
}