clear method

Future clear({
  1. required String phone,
  2. bool keepStarred = false,
})

clear chat

Implementation

Future clear({
  required String phone,
  bool keepStarred = false,
}) async =>
    await wpClient.evaluateJs(
        '''window.WPP.chat.clear(${phone.phoneParse},$keepStarred);''',
        methodName: "ClearChat");