use_message_database property

bool? get use_message_database

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

Implementation

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

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

Implementation

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