MeetMessage class

Represents a meeting message with various parameters.

This class is designed to encapsulate all the necessary information required to send a meeting message, including the recipient's JID, reply message ID, topic ID, title, scheduled date and time, and a link to the meeting.

Available extensions

Constructors

MeetMessage({required String toJid, String? replyMessageId, String topicId = "", String? title, int? scheduledDateTime, String? link})
Initializes a new instance of the MeetMessage class.

Properties

hashCode int
The hash code for this object.
no setterinherited
A link to the meeting.
getter/setter pair
mentionedUsersIds List<String>?
A list of user IDs mentioned in the message.
getter/setter pair
metaData List<MessageMetaData>
A list of MessageMetaData objects providing additional information about the message.
getter/setter pair
replyMessageId String?
The ID of the message being replied to, if any.
getter/setter pair
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
scheduledDateTime int?
The scheduled date and time of the meeting.
getter/setter pair
title String?
The title of the meeting.
getter/setter pair
toJid String
The Jabber ID (JID) of the recipient.
getter/setter pair
topicId String
The ID of the topic under which the message is sent, if any.
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toMap() Map<String, dynamic>

Available on MeetMessage, provided by the ExtractMeetMessage extension

Converts a MeetMessage object into a map.
toString() String
A string representation of this object.
override

Operators

operator ==(Object other) bool
The equality operator.
inherited