UserMessageUpdateParams constructor

UserMessageUpdateParams(
  1. {String? message,
  2. Map<String, dynamic>? extendedMessage,
  3. String? data,
  4. String? customType,
  5. MentionType? mentionType,
  6. List<String>? mentionedUserIds}
)

Implementation

UserMessageUpdateParams({
  this.message,
  this.extendedMessage,
  String? data,
  String? customType,
  MentionType? mentionType,
  List<String>? mentionedUserIds,
}) : super(
        data: data,
        customType: customType,
        mentionType: mentionType,
        mentionedUserIds: mentionedUserIds,
      );