sendFileChatMessage method
void
sendFileChatMessage({
- required MessageType type,
- required String fileLocalPath,
- required String room,
override
Implementation
@override
void sendFileChatMessage(
{required MessageType type,
required String fileLocalPath,
required String room}) {
File file = File(fileLocalPath);
String fileChatTopic = room.toFileSendingTopic;
clientHandler.sendFilePayload(file, fileChatTopic);
}