scheduleTo property

String scheduleTo

Implementation

String get scheduleTo => _getAttribute<String>(kScheduleTo, '');
void scheduleTo=(String? x)

This determines whether a team is a split team or not.Accepted values: 1. "plan" (default) 2. "time" (designates as a split team)

pass null to remove key from attributes

Implementation

set scheduleTo(String? x) => (x == null)
    ? _attributes.remove(kScheduleTo)
    : _attributes[kScheduleTo] = x;