watchAllNotifier method
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);
}