ChatApp/lib/tools/Message.dart
2024-06-15 14:38:50 +08:00

6 lines
90 B
Dart

class Message{
final String text;
final bool isMe;
Message(this.text, this.isMe);
}