use_chat_info_database property

bool? use_chat_info_database

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;
  }
}
void use_chat_info_database=(bool? value)

Implementation

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