frequency property

String frequency

Implementation

String get frequency => _getAttribute<String>(kFrequency, '');
void frequency=(String? x)

pass null to remove key from attributes

Implementation

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