setUseBlink method

GazeTrackerOptionsBuilder setUseBlink(
  1. bool useBlink
)

Sets whether to use the blink detection feature.

useBlink determines if the blink detection feature should be enabled. Returns the GazeTrackerOptionsBuilder for method chaining.

Implementation

GazeTrackerOptionsBuilder setUseBlink(bool useBlink) {
  _useBlink = useBlink;
  return this;
}