spread property

Expression get spread
inherited

This expression preceded by the spread operator ....

Implementation

Expression get spread => BinaryExpression._(
  const LiteralExpression._('...'),
  this,
  '',
  addSpace: false,
);