isAssignedDirectly property
bool
get
isAssignedDirectly
Implementation
bool get isAssignedDirectly => _getAttribute<bool>(kAssignedDirectly, false);
set
isAssignedDirectly
(bool? x)
pass null
to remove key from attributes
Implementation
set isAssignedDirectly(bool? x) => (x == null)
? _attributes.remove(kAssignedDirectly)
: _attributes[kAssignedDirectly] = x;