runActionFutures<T> method

Future<bool> runActionFutures<T>(
  1. List<Future> futures
)

Sets the action to busy, runs all the actions and then sets it to not busy when completed.

return false if error occurred, otherwise true.

Implementation

Future<bool> runActionFutures<T>(
  List<Future> futures,
) =>
    runBusyFutures(
      futures,
      key: actionName,
    );