date property

String date

Implementation

String get date => _getAttribute<String>(kDate, '');
void date=(String? x)

pass null to remove key from attributes

Implementation

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