eventOwnerId property

String eventOwnerId

Implementation

String get eventOwnerId => _getAttribute<String>(kEventOwnerId, '');
void eventOwnerId=(String? x)

pass null to remove key from attributes

Implementation

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