is_attached property

bool? get is_attached

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

Implementation

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

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

Implementation

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