context property
Path?
context
getter/setter pair
Optional context for rendering the generated link (see Arc.call) as a sequence of path method calls.
final context = …;
final arc = Arc(…)..context = context;
arc.context; // context
Defaults to null, which means the generated link is returned as a path data string.
Implementation
Path? context;