EMFileMessageBody constructor

EMFileMessageBody(
  1. {required String localPath,
  2. String? displayName,
  3. int? fileSize,
  4. MessageType type = MessageType.FILE}
)

创建一条带文件附件的消息。

Param localPath 图片文件路径。

Param displayName 文件显示名称。

Param fileSize 文件大小,单位是字节。

Param type 文件类型。

Implementation

EMFileMessageBody({
  required this.localPath,
  this.displayName,
  this.fileSize,
  MessageType type = MessageType.FILE,
}) : super(type: type);