expectAsyncUntil3<T, A, B, C> function

Func3<T, A, B, C> expectAsyncUntil3<T, A, B, C>(
  1. T callback(
    1. A,
    2. B,
    3. C
    ),
  2. bool isDone(
      ),
    1. {String? id,
    2. String? reason}
    )

    Informs the framework that the given callback of arity 3 is expected to be called until isDone returns true.

    Returns a wrapped function that should be used as a replacement of the original callback.

    isDone is called after each time the function is run. Only when it returns true will the callback be considered complete.

    Both id and reason are optional and provide extra information about the callback when debugging. id should be the name of the callback, while reason should be the reason the callback is expected to be called.

    This method takes callbacks with three arguments. See also expectAsyncUntil0, expectAsyncUntil1, expectAsyncUntil2, expectAsyncUntil4, expectAsyncUntil5, and expectAsyncUntil6 for callbacks with different arity.

    Implementation

    Func3<T, A, B, C> expectAsyncUntil3<T, A, B, C>(
            T Function(A, B, C) callback, bool Function() isDone,
            {String? id, String? reason}) =>
        _ExpectedFunction<T>(callback, 0, -1,
                id: id, reason: reason, isDone: isDone)
            .max3;