runBusyFuture method

dynamic runBusyFuture(
  1. Future future
)

Implementation

runBusyFuture(Future future) async {
  _isBusy = true;
  notifyListeners();
  await future;
  _isBusy = false;
  notifyListeners();
}