FrameSpec constructor

FrameSpec({
  1. FrameType? type = FrameType.range,
  2. FrameBoundary? start,
  3. FrameBoundary? end,
  4. ExcludeMode? excludeMode = ExcludeMode.noOthers,
})

Implementation

FrameSpec({
  this.type = FrameType.range,
  FrameBoundary? start,
  FrameBoundary? end,
  this.excludeMode = ExcludeMode.noOthers,
})  : start = start ?? FrameBoundary.unboundedPreceding(),
      end = end ?? FrameBoundary.currentRow();