next method
Wait the next change of a Atom.
The timeLimit is 10 seconds by default.
Implementation
@override
Future<T> next({
Duration timeLimit = const Duration(seconds: 10),
}) {
return rxNext<T>(
this,
timeLimit: timeLimit,
);
}
Wait the next change of a Atom.
The timeLimit is 10 seconds by default.
@override
Future<T> next({
Duration timeLimit = const Duration(seconds: 10),
}) {
return rxNext<T>(
this,
timeLimit: timeLimit,
);
}