NEChatRoomFileMessage constructor
NEChatRoomFileMessage({})
Implementation
NEChatRoomFileMessage({
Map<String, dynamic>? senderExtension,
String? content,
int? time,
required String path,
required String displayName,
}) : _attachment = NEFileAttachment(
url: path,
displayName: displayName,
),
super(
senderExtension: senderExtension,
content: content,
time: time,
);