parentId property

String parentId

Implementation

String get parentId => _getAttribute<String>(kParentId, '');
void parentId=(String? x)

pass null to remove key from attributes

Implementation

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