startsAt property

DateTime startsAt

Implementation

DateTime get startsAt => _getAttribute<DateTime>(kStartsAt, DateTime(0));
void startsAt=(DateTime? x)

pass null to remove key from attributes

Implementation

set startsAt(DateTime? x) => (x == null)
    ? _attributes.remove(kStartsAt)
    : _attributes[kStartsAt] = x.toIso8601String();