isScheduleSpecialServiceTimes property

bool isScheduleSpecialServiceTimes

Implementation

bool get isScheduleSpecialServiceTimes =>
    _getAttribute<bool>(kScheduleSpecialServiceTimes, false);
void isScheduleSpecialServiceTimes=(bool? x)

Controls if the related rehearsal/other time is assigned when a person is scheduled to a split team service time that does not match a Time Preference Option

pass null to remove key from attributes

Implementation

set isScheduleSpecialServiceTimes(bool? x) => (x == null)
    ? _attributes.remove(kScheduleSpecialServiceTimes)
    : _attributes[kScheduleSpecialServiceTimes] = x;