sendMessage method

Future<NIMResult<NIMMessage>> sendMessage(
  1. {required NIMMessage message,
  2. bool resend = false}
)

发送消息 如果需要更新发送进度,请监听 onMessageStatus。 如果需要监听附件进度,请监听 onAttachmentProgress。 如果消息发送失败后需要重发,请使用resend 参数。

Implementation

Future<NIMResult<NIMMessage>> sendMessage(
    {required NIMMessage message, bool resend = false}) async {
  return _platform.sendMessage(message: message, resend: resend);
}