asA method

Expression asA(
  1. Expression other
)
inherited

Returns the result of this as other.

Implementation

Expression asA(Expression other) =>
    ParenthesizedExpression._(BinaryExpression._(expression, other, 'as'));