update_new_custom_query property

UpdateNewCustomQuery get update_new_custom_query

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

Implementation

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

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

Implementation

set update_new_custom_query(UpdateNewCustomQuery value) {
  rawData["update_new_custom_query"] = value.toJson();
}