updateRaw method
Deprecated use 'update'
Implementation
@Deprecated('use "update", will remove at 3.0.1')
@visibleForOverriding
FutureOr<T?> updateRaw(
FutureOr<T> Function(T old) up, {
Function(Object e, StackTrace s)? onError,
int slowlyMs = 100,
Object? debounceTag,
Object? throttleTag,
ignoreSkipError = true,
}) async => await update(
(old) => up(old),
onError: onError,
slowlyMs: slowlyMs,
debounceTag: debounceTag,
throttleTag: throttleTag,
ignoreSkipError: ignoreSkipError,
);