is_disconnected property

bool? get is_disconnected

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

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