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