offset property

Offset offset

The offset to apply to the origin of the linked RenderLeaderLayer to obtain this render object's origin.

Implementation

Offset get offset => _offset;
void offset= (Offset value)

Implementation

set offset(Offset value) {
  assert(value != null);
  if (_offset == value)
    return;
  _offset = value;
  markNeedsPaint();
}