switchInlineCurrentChat method
Adds an inline query button for current chat to the current row.
Implementation
InlineKeyboard switchInlineCurrentChat(
String text, {
String query = "",
String? iconCustomEmojiId,
StyleType? style,
}) {
return add(
InlineKeyboardButton(
text: text,
switchInlineQueryCurrentChat: query,
iconCustomEmojiId: iconCustomEmojiId,
style: style,
),
);
}