updateRaw method
FutureOr<M?>
updateRaw(
- FutureOr<
M?> update(- M old
- dynamic onError(
- Object e,
- StackTrace s
- int slowlyMs = 100,
- Object? debounceTag,
- Object? throttleTag,
- dynamic ignoreSkipError = true,
inherited
use debounceMs|throttleTag
, must 'await' to get correct stace trace
Implementation
@visibleForTesting
@protected
@override
FutureOr<M?> updateRaw(
FutureOr<M?> Function(M old) update, {
Function(Object e, StackTrace s)? onError,
int slowlyMs = 100,
Object? debounceTag,
Object? throttleTag,
ignoreSkipError = true,
}) => super.updateRaw(
update,
onError: onError,
slowlyMs: slowlyMs,
debounceTag: debounceTag,
throttleTag: throttleTag,
ignoreSkipError: ignoreSkipError,
);