reply_markup_inline_keyboard property

ReplyMarkupInlineKeyboard get reply_markup_inline_keyboard

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

ReplyMarkupInlineKeyboard get reply_markup_inline_keyboard {
  try {
    if (rawData["reply_markup_inline_keyboard"] is Map == false) {
      return ReplyMarkupInlineKeyboard({});
    }
    return ReplyMarkupInlineKeyboard(rawData["reply_markup_inline_keyboard"] as Map);
  } catch (e) {
    return ReplyMarkupInlineKeyboard({});
  }
}
set reply_markup_inline_keyboard (ReplyMarkupInlineKeyboard value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set reply_markup_inline_keyboard(ReplyMarkupInlineKeyboard value) {
  rawData["reply_markup_inline_keyboard"] = value.toJson();
}