nullSafeSpread property

Expression get nullSafeSpread
inherited

This expression preceded by the null safe spread operator ?....

Implementation

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