Check if driver is connected/ready
@override Future<bool> isConnected() async { try { await _directory.stat(); return true; } catch (e) { return false; } }