day property

String day

Implementation

String get day => _getAttribute<String>(kDay, '');
void day=(String? x)

Possible values: sunday, monday, tuesday, wednesday, thursday, friday, or saturday

pass null to remove key from attributes

Implementation

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