inlineKeyboardButtonTypeCallbackWithPassword property

InlineKeyboardButtonTypeCallbackWithPassword? inlineKeyboardButtonTypeCallbackWithPassword

A button that asks for the 2-step verification password of the current user and then sends a callback query to a bot

Implementation

InlineKeyboardButtonTypeCallbackWithPassword?
    get inlineKeyboardButtonTypeCallbackWithPassword {
  if (this is InlineKeyboardButtonTypeCallbackWithPassword) {
    return this as InlineKeyboardButtonTypeCallbackWithPassword;
  }
  return null;
}