offset property
The offset to apply to the origin of the linked RenderLeaderLayer to obtain this render object's origin.
Implementation
Offset get offset => _offset;
Implementation
set offset(Offset value) {
assert(value != null);
if (_offset == value)
return;
_offset = value;
markNeedsPaint();
}