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