feedType property

String feedType

Implementation

String get feedType => _getAttribute<String>(kFeedType, '');
void feedType=(String? x)

Possible values: registrations, groups, ical, or form

pass null to remove key from attributes

Implementation

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