FileMessageUpdateParams constructor

FileMessageUpdateParams(
  1. {String? data,
  2. String? customType,
  3. MentionType? mentionType,
  4. List<String>? mentionedUserIds}
)

Implementation

FileMessageUpdateParams({
  String? data,
  String? customType,
  MentionType? mentionType,
  List<String>? mentionedUserIds,
}) : super(
        data: data,
        customType: customType,
        mentionType: mentionType,
        mentionedUserIds: mentionedUserIds,
      );