buttonPay static method

InlineKeyboardButton buttonPay(
  1. String text, {
  2. bool pay = true,
})

Creates a pay button.

Implementation

static InlineKeyboardButton buttonPay(String text, {bool pay = true}) {
  return InlineKeyboardButton(text: text, pay: pay);
}