nullSafeSpread property

Expression nullSafeSpread

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

Implementation

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