resolveGraphicContext method
Implementation
@override
GraphicContext resolveGraphicContext([GraphicContext? parentContext]) {
var graphicContext = super.resolveGraphicContext(parentContext);
return graphicContext.copyWith(
position: graphicContext.position.incrementXY(x, y),
backgroundColor: backgroundColor,
);
}