sendMessage static method
Future<Message?>
sendMessage(
- int conversationType,
- String targetId,
- MessageContent content, {
- bool disableNotification = false,
Implementation
static Future<Message?> sendMessage(int conversationType, String targetId, MessageContent content, {bool disableNotification = false}) async {
return sendMessageCarriesPush(conversationType, targetId, content, "", "", disableNotification: disableNotification);
}