join abstract method

Future<List<Object?>> join({
  1. bool withWaiting = false,
})

Returns a Future that completes when all currently running tasks complete.

If withWaiting is set, it will include the waiting tasks too.

Implementation

Future<List<Object?>> join({bool withWaiting = false});