reloading property

Future<CollectionBase<TModel>>? reloading

If reload is done, it waits until the loading process is finished.

After reading is completed, a T object is returned.

If reload is not in progress, Null is returned.

reloadした場合にその読込処理が終わるまで待ちます。

読込終了後、Tオブジェクトが返されます。

reloadを実行中でない場合、Nullが返されます。

Implementation

Future<CollectionBase<TModel>>? get reloading => _reloadingCompleter?.future;