button property

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

Implementation

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

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

Implementation

set button(InlineQueryResultsButton value) {
  rawData["button"] = value.toJson();
}