copyWith method
InlineQueryResultCachedSticker
copyWith({
- String? id,
- String? stickerFileId,
- InlineKeyboardMarkup? replyMarkup,
- InputMessageContent? inputMessageContent,
Copy method
Implementation
InlineQueryResultCachedSticker copyWith({
String? id,
String? stickerFileId,
InlineKeyboardMarkup? replyMarkup,
InputMessageContent? inputMessageContent,
}) {
return InlineQueryResultCachedSticker(
id: id ?? this.id,
stickerFileId: stickerFileId ?? this.stickerFileId,
replyMarkup: replyMarkup ?? this.replyMarkup,
inputMessageContent: inputMessageContent ?? this.inputMessageContent,
);
}