CompoundSelectStatement constructor

CompoundSelectStatement({
  1. WithClause? withClause,
  2. required SelectStatementNoCompound base,
  3. List<CompoundSelectPart> additional = const [],
})

Implementation

CompoundSelectStatement({
  WithClause? withClause,
  required this.base,
  this.additional = const [],
}) : super._(withClause);