RoomMessage constructor

RoomMessage({
  1. required String fromParticipantId,
  2. required String type,
  3. required Map<String, dynamic> message,
  4. bool local = false,
  5. Uint8List? attachment,
})

Implementation

RoomMessage({required this.fromParticipantId, required this.type, required this.message, this.local = false, this.attachment});