next method

  1. @override
Future<RxMap<K, V>> next({
  1. Duration timeLimit = const Duration(seconds: 10),
})
override

Wait the next change of a Atom. The timeLimit is 10 seconds by default.

Implementation

@override
Future<RxMap<K, V>> next({
  Duration timeLimit = const Duration(seconds: 10),
}) {
  return rxNext<RxMap<K, V>>(
    this,
    timeLimit: timeLimit,
  );
}