version bump

This commit is contained in:
Salvatore Giordano
2020-05-13 16:54:23 +02:00
parent a1a3cb177d
commit 2de3cc2b69
8 changed files with 188 additions and 47 deletions
+9
View File
@@ -23,10 +23,19 @@ typedef ThreadBuilder = Widget Function(BuildContext context, Message parent);
typedef ThreadTapCallback = void Function(Message, Widget);
class MessageDetails {
/// True if the message belongs to the current user
bool isMyMessage;
/// True if the user message is the same of the previous message
bool isLastUser;
/// True if the user message is the same of the next message
bool isNextUser;
/// The message
Message message;
/// The index of the message
int index;
MessageDetails(