logout method

Future logout()

To Logout

Implementation

Future logout() async {
  try {
    await wpClient.evaluateJs('''WPP.conn.logout();''');
  } catch (e) {
    throw "Logout Failed";
  }
}