WithClause constructor

const WithClause({
  1. required SourceSpan span,
  2. required String items,
})

Implementation

const WithClause({required super.span, required this.items})
    : super(keyword: 'WITH', body: items);