sendLocationMessage static method

dynamic sendLocationMessage(
  1. String jid,
  2. double latitude,
  3. double longitude,
  4. String replyMessageId, {
  5. String? topicId,
})

Implementation

static sendLocationMessage(String jid, double latitude, double longitude, String replyMessageId, {String? topicId}) {
  return FlyChatFlutterPlatform.instance.sendLocationMessage(jid, latitude, longitude, replyMessageId, topicId: topicId);
}