accept<T> method

  1. @override
T accept<T>(
  1. IfConditionExpressionVisitor<T> visitor
)
override

Calls the appropriate visit method on visitor.

Implementation

@override
T accept<T>(IfConditionExpressionVisitor<T> visitor) =>
    visitor.visitIfConditionParenthesized(this);