sendContactCard method
Implementation
Future<Message?> sendContactCard({
required String phone,
required String contactPhone,
required String contactName,
}) async {
var result = await wpClient
.evaluateJs('''window.WPP.chat.sendVCardContactMessage(${phone.phoneParse}, {
id: ${contactPhone.phoneParse},
name: ${contactName.jsParse}
});''', methodName: "sendContactCard");
return Message.parse(result).firstOrNull;
}