position property

DecorationPosition get position

Whether to paint the decoration behind or in front of the child.

Implementation

DecorationPosition get position => _position;
set position (DecorationPosition value)

Implementation

set position(DecorationPosition value) {
  if (_position == value) return;
  _position = value;
}