inline_query_results property

InlineQueryResults get inline_query_results

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

Implementation

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

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

Implementation

set inline_query_results(InlineQueryResults value) {
  rawData["inline_query_results"] = value.toJson();
}