ChatRoomMessage constructor

ChatRoomMessage({
  1. required dynamic data,
  2. required String room,
  3. required int from,
  4. required DateTime sentAt,
})

Implementation

ChatRoomMessage({
  required this.data,
  required this.room,
  required this.from,
  required this.sentAt,
});