WindowFrame constructor

const WindowFrame({
  1. FrameMode mode = FrameMode.range,
  2. FrameBound start = const FrameBound(FrameBoundKind.unboundedPreceding),
  3. FrameBound end = const FrameBound(FrameBoundKind.currentRow),
  4. FrameExclude exclude = FrameExclude.noOthers,
})

Implementation

const WindowFrame({
  this.mode = FrameMode.range,
  this.start = const FrameBound(FrameBoundKind.unboundedPreceding),
  this.end = const FrameBound(FrameBoundKind.currentRow),
  this.exclude = FrameExclude.noOthers,
});