updateRaw method
FutureOr<M?>
updateRaw(
- FutureOr<
M?> update(- M old
- dynamic onError(
- Object e,
- StackTrace s
- int slowlyMs = 100,
- Object? debounceTag,
- Object? throttleTag,
override
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,
}) =>
super.updateRaw(
update,
onError: onError,
slowlyMs: slowlyMs,
debounceTag: debounceTag,
throttleTag: throttleTag,
);