restartApp method

Future<bool> restartApp({
  1. Duration? timeout = const Duration(seconds: 60),
})

Restart the app under test

Implementation

Future<bool> restartApp({
  Duration? timeout = const Duration(seconds: 60),
}) {
  throw UnimplementedError('Unable to restart the app during the test');
}