copyWith method

GetMessageEmbeddingCode copyWith({
  1. int? chatId,
  2. int? messageId,
  3. bool? forAlbum,
})

Implementation

GetMessageEmbeddingCode copyWith({
  int? chatId,
  int? messageId,
  bool? forAlbum,
}) => GetMessageEmbeddingCode(
  chatId: chatId ?? this.chatId,
  messageId: messageId ?? this.messageId,
  forAlbum: forAlbum ?? this.forAlbum,
);