checkHealth method
Checks the status of the Flutter Driver extension.
Implementation
Future<Health> checkHealth({Duration timeout}) async {
  timeout ??= _shortTimeout(timeoutMultiplier);
  return Health.fromJson(await _sendCommand(GetHealth(timeout: timeout)));
}