BaseMessageCreateParams constructor

BaseMessageCreateParams({
  1. String? data,
  2. String? customType,
  3. MentionType mentionType = MentionType.users,
  4. List<String>? mentionedUserIds,
  5. List<MessageMetaArray>? metaArrays,
  6. int? parentMessageId,
  7. bool replyToChannel = false,
  8. PushNotificationDeliveryOption pushNotificationDeliveryOption = PushNotificationDeliveryOption.normal,
  9. bool isPinnedMessage = false,
})

Implementation

BaseMessageCreateParams({
  this.data,
  this.customType,
  this.mentionType = MentionType.users,
  this.mentionedUserIds,
  this.metaArrays,
  this.parentMessageId,
  this.replyToChannel = false,
  this.pushNotificationDeliveryOption = PushNotificationDeliveryOption.normal,
  this.isPinnedMessage = false,
});