timeId property

String timeId

Implementation

String get timeId => _getAttribute<String>(kTimeId, '');
void timeId=(String? x)

pass null to remove key from attributes

Implementation

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