use_chat_info_database property

bool? get use_chat_info_database

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

Implementation

bool? get use_chat_info_database {
  try {
    if (rawData["use_chat_info_database"] is bool == false) {
      return null;
    }
    return rawData["use_chat_info_database"] as bool;
  } catch (e) {
    return null;
  }
}
set use_chat_info_database (bool? value)

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

Implementation

set use_chat_info_database(bool? value) {
  rawData["use_chat_info_database"] = value;
}