enabled_start_notification property

bool? get enabled_start_notification

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

Implementation

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

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

Implementation

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