copyWith method
PreparedInlineMessage
copyWith({
- int? inlineQueryId,
- InlineQueryResult? result,
- TargetChatTypes? chatTypes,
Implementation
PreparedInlineMessage copyWith({
int? inlineQueryId,
InlineQueryResult? result,
TargetChatTypes? chatTypes,
}) => PreparedInlineMessage(
inlineQueryId: inlineQueryId ?? this.inlineQueryId,
result: result ?? this.result,
chatTypes: chatTypes ?? this.chatTypes,
);