Whether to paint the box decoration behind or in front of the child.
Source
DecorationPosition get position => _position;
Source
set position (DecorationPosition newPosition) {
assert(newPosition != null);
if (newPosition == _position)
return;
_position = newPosition;
markNeedsPaint();
}