updateRaw method
- @Deprecated('use "update", will remove at 3.0.1')
- @visibleForOverriding
- FutureOr<
M> up(- M old
- dynamic onError(
- Object e,
- StackTrace s
- int slowlyMs = 100,
- Object? debounceTag,
- Object? throttleTag,
- dynamic ignoreSkipError = true,
inherited
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,
);