startTime property

int startTime

Implementation

int get startTime => _getAttribute<int>(kStartTime, 0);
void startTime=(int? x)

pass null to remove key from attributes

Implementation

set startTime(int? x) => (x == null)
    ? _attributes.remove(kStartTime)
    : _attributes[kStartTime] = x;