BaseMessageParams class Null safety

Represents base class for message parameters.

Implementers

Constructors

BaseMessageParams({String? data, String? customType, PushNotificationDeliveryOption pushOption = PushNotificationDeliveryOption.normal, List<MessageMetaArray>? metaArrays, MentionType? mentionType, List<String>? mentionedUserIds, int? parentMessageId, bool replyToChannel = false, List<User>? mentionedUsers, bool isPinnedMessage = false})
BaseMessageParams.withMessage(BaseMessage message, {bool? deepCopy})

Properties

customType String?
Customize message's type to filter
read / write
data String?
Message data. The default value is null
read / write
hashCode int
The hash code for this object.
read-onlyinherited
isPinnedMessage bool
Pinned Message
read / write
mentionedUserIds List<String>?
Mention to specific users. If sends a message with this field, the message will be arrived to mentioned users.
read / write
mentionedUsers List<User>?
The list of users who was mentioned together with this message.
read / write
mentionType MentionType?
Mention type
read / write
metaArrays List<MessageMetaArray>?
Meta array with keys and values
read / write
parentMessageId int?
The unique ID of a parent message. A parent message is a message that has a thread of replies. If the message sent through the BaseChannel.sendUserMessage or BaseChannel.sendFileMessage method is a parent message, the value of this property is 0. If the message is a reply to a parent message, the value is the message ID of the parent message.
read / write
pushOption PushNotificationDeliveryOption
The push notification delivery option that determines how to deliver the push notification when sending a user or a file message.
read / write
replyToChannel bool
Allow Reply to Channel The default is false
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed.
inherited
toJson() Map<String, dynamic>
toString() String
A string representation of this object.
inherited

Operators

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