sendCustomNotification static method

Future<NIMResult<void>> sendCustomNotification(
  1. String conversationId,
  2. String content,
  3. NIMSendCustomNotificationParams params
)

发送自定义通知

Implementation

static Future<NIMResult<void>> sendCustomNotification(String conversationId,
    String content, NIMSendCustomNotificationParams params) {
  return NimCore.instance.notificationService
      .sendCustomNotification(conversationId, content, params);
}