watchAllProvider method

AutoDisposeStateNotifierProvider<DataStateNotifier<List<T>>, DataState<List<T>>> watchAllProvider({
  1. bool remote = false,
  2. Map<String, dynamic>? params,
  3. Map<String, String>? headers,
  4. bool syncLocal = false,
  5. String? finder,
  6. DataRequestLabel? label,
})
inherited

Implementation

AutoDisposeStateNotifierProvider<DataStateNotifier<List<T>>,
    DataState<List<T>>> watchAllProvider({
  bool remote = false,
  Map<String, dynamic>? params,
  Map<String, String>? headers,
  bool syncLocal = false,
  String? finder,
  DataRequestLabel? label,
}) {
  return _watchAllProvider(
    WatchArgs(
      remote: remote,
      params: params,
      headers: headers,
      syncLocal: syncLocal,
      finder: finder,
      label: label,
    ),
  );
}