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