copyWith method
SavePreparedInlineMessage
copyWith({
- int? userId,
- InputInlineQueryResult? result,
- TargetChatTypes? chatTypes,
Implementation
SavePreparedInlineMessage copyWith({
int? userId,
InputInlineQueryResult? result,
TargetChatTypes? chatTypes,
}) => SavePreparedInlineMessage(
userId: userId ?? this.userId,
result: result ?? this.result,
chatTypes: chatTypes ?? this.chatTypes,
);