15 lines
300 B
Dart
15 lines
300 B
Dart
class Message {
|
|
final String text;
|
|
final DateTime timestamp;
|
|
final String senderId;
|
|
final String senderName;
|
|
final String groupId;
|
|
|
|
Message({
|
|
required this.text,
|
|
required this.timestamp,
|
|
required this.senderId,
|
|
required this.senderName,
|
|
required this.groupId,
|
|
});
|
|
} |