| Index: pkg/scheduled_test/lib/src/value_future.dart
|
| diff --git a/pkg/scheduled_test/lib/src/value_future.dart b/pkg/scheduled_test/lib/src/value_future.dart
|
| index a7d65171e45070de6ff01133b1b11430a7877b05..3821feb674369d8a6a82ee13407017e09969f771 100644
|
| --- a/pkg/scheduled_test/lib/src/value_future.dart
|
| +++ b/pkg/scheduled_test/lib/src/value_future.dart
|
| @@ -35,4 +35,6 @@ class ValueFuture<T> implements Future<T> {
|
| Future then(onValue(T value), {Function onError}) =>
|
| _future.then(onValue, onError: onError);
|
| Future<T> whenComplete(action()) => _future.whenComplete(action);
|
| + Future timeout(Duration timeLimit, [void onTimeout()]) =>
|
| + _future.timeout(timeLimit, onTimeout);
|
| }
|
|
|