reply_markup property
ReplyMarkup
get
reply_markup
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
ReplyMarkup get reply_markup {
try {
if (rawData["reply_markup"] is Map == false) {
return ReplyMarkup({});
}
return ReplyMarkup(rawData["reply_markup"] as Map);
} catch (e) {
return ReplyMarkup({});
}
}
set
reply_markup
(ReplyMarkup value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set reply_markup(ReplyMarkup value) {
rawData["reply_markup"] = value.toJson();
}