withDateTimeCaptureInterval method

Filter withDateTimeCaptureInterval({
  1. DateTime? start,
  2. DateTime? end,
})

Return a Filter with a CaptureInterval created by the provided start and end DateTime objects

Implementation

Filter withDateTimeCaptureInterval({DateTime? start, DateTime? end}) {
  setDateTimeCaptureInterval(start: start, end: end);
  return this;
}