endsAt property

DateTime endsAt

Implementation

DateTime get endsAt => _getAttribute<DateTime>(kEndsAt, DateTime(0));
void endsAt=(DateTime? x)

pass null to remove key from attributes

Implementation

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