watch property

FutureOr<Stream<List<T>>> Function({int? after, K? around, int? before})? watch
final

Callback, called when Stream of the T items around the provided K are required.

Intended to be used to watch SQL queries being changed.

Implementation

final FutureOr<Stream<List<T>>> Function({
  int? after,
  int? before,
  K? around,
})?
watch;