WatchArgs<T> constructor

WatchArgs<T>({
  1. Object? id,
  2. bool? remote,
  3. Map<String, dynamic>? params,
  4. Map<String, String>? headers,
  5. bool? syncLocal,
  6. bool filterLocal(
    1. T
    )?,
  7. AlsoWatch<T>? alsoWatch,
})

Implementation

WatchArgs({
  this.id,
  this.remote,
  this.params,
  this.headers,
  this.syncLocal,
  this.filterLocal,
  this.alsoWatch,
});