respondsToId property

String respondsToId

Implementation

String get respondsToId => _getAttribute<String>(kRespondsToId, '');
void respondsToId=(String? x)

pass null to remove key from attributes

Implementation

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