canMute method

Future<bool> canMute({
  1. required String phone,
})

to check if we canMute phone number

Implementation

Future<bool> canMute({required String phone}) async =>
    await wpClient.evaluateJs('''WPP.chat.canMute(${phone.phoneParse});''',
        methodName: "CanMute");