6 lines
90 B
Dart
6 lines
90 B
Dart
class Message{
|
|
final String text;
|
|
final bool isMe;
|
|
|
|
Message(this.text, this.isMe);
|
|
} |