include_bots property

bool? get include_bots

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

Implementation

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

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

Implementation

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