parentContext property
DisplacementContext?
get
parentContext
inherited
The context in the parent's coordinate space, containing start and end points.
Implementation
C? get parentContext {
if (renderingTrace.length >= 2) {
final lastIndex = renderingTrace.length - 1;
return renderingTrace[lastIndex];
} else {
return null;
}
}