timeType property

String timeType

Implementation

String get timeType => _getAttribute<String>(kTimeType, '');
void timeType=(String? x)

Possible values are:

  • rehearsal

  • service

  • other

pass null to remove key from attributes

Implementation

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