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