watchAllNotifier method

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

Implementation

DataStateNotifier<List<T>> watchAllNotifier(
    {bool? remote,
    Map<String, dynamic>? params,
    Map<String, String>? headers,
    bool? syncLocal,
    String? finder,
    DataRequestLabel? label}) {
  final provider = watchAllProvider(
    remote: remote,
    params: params,
    headers: headers,
    syncLocal: syncLocal,
    finder: finder,
    label: label,
  );
  return remoteAdapter.internalWatch!(provider.notifier);
}