awaitWaitingFiles method

Future<List<WaitingFile>> awaitWaitingFiles({
  1. Duration? timeout,
})

Blocks until at least one received file is available, or timeout expires. Returns the same shape as waitingFiles.

Implementation

Future<List<WaitingFile>> awaitWaitingFiles({Duration? timeout}) =>
    throw UnimplementedError(
      'taildrop.awaitWaitingFiles not yet implemented',
    );