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