WindowSpec constructor

WindowSpec({
  1. List<Expr> partitionBy = const [],
  2. List<WindowOrderItem> orderBy = const [],
  3. WindowFrame? frame,
  4. String? baseName,
})

Implementation

WindowSpec({
  this.partitionBy = const [],
  this.orderBy = const [],
  this.frame,
  this.baseName,
});