isMainReady method

Future<bool> isMainReady()

to check if ChatScreen is loaded on the page

Implementation

Future<bool> isMainReady() async {
  try {
    return await wpClient.evaluateJs('''WPP.conn.isMainReady();''');
  } catch (e) {
    WhatsappLogger.log(e.toString());
    return false;
  }
}