sendContactMessage static method

Future sendContactMessage(
  1. List<String> contactList,
  2. String jid,
  3. String contactName,
  4. String replyMessageId,
)

Implementation

static Future<dynamic> sendContactMessage(List<String> contactList,
    String jid, String contactName, String replyMessageId) {
  return FlyChatFlutterPlatform.instance
      .sendContactMessage(contactList, jid, contactName, replyMessageId);
}