checkHealth method

Future<Health> checkHealth(
  1. {Duration? timeout}
)

Checks the status of the Flutter Driver extension.

Implementation

Future<Health> checkHealth({ Duration? timeout }) async {
  return Health.fromJson(await sendCommand(GetHealth(timeout: timeout)));
}