inline_query_result_game property

InlineQueryResultGame get inline_query_result_game

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

Implementation

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

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

Implementation

set inline_query_result_game(InlineQueryResultGame value) {
  rawData["inline_query_result_game"] = value.toJson();
}