copyWith method
InputMessageForwarded
copyWith({
- int? fromChatId,
- int? messageId,
- bool? replaceVideoStartTimestamp,
- int? newVideoStartTimestamp,
- MessageCopyOptions? copyOptions,
Implementation
InputMessageForwarded copyWith({
int? fromChatId,
int? messageId,
bool? inGameShare,
bool? replaceVideoStartTimestamp,
int? newVideoStartTimestamp,
MessageCopyOptions? copyOptions,
}) => InputMessageForwarded(
fromChatId: fromChatId ?? this.fromChatId,
messageId: messageId ?? this.messageId,
inGameShare: inGameShare ?? this.inGameShare,
replaceVideoStartTimestamp:
replaceVideoStartTimestamp ?? this.replaceVideoStartTimestamp,
newVideoStartTimestamp:
newVideoStartTimestamp ?? this.newVideoStartTimestamp,
copyOptions: copyOptions ?? this.copyOptions,
);