WatchOptions constructor

const WatchOptions({
  1. FlushMode flush = FlushMode.pre,
  2. bool immediate = false,
  3. bool deep = false,
  4. bool once = false,
})

Creates watch options with the specified configuration.

Implementation

const WatchOptions({
  this.flush = FlushMode.pre,
  this.immediate = false,
  this.deep = false,
  this.once = false,
});