stopPlan method
Stop the plan currently being executed for the component named componentName.
// Example:
await myMotionService.stopPlan('myBase');
For more information, see the motion service docs.
Implementation
Future<void> stopPlan(String componentName, {Map<String, dynamic>? extra}) async {
final request = StopPlanRequest(name: name, componentName: componentName, extra: extra?.toStruct());
await client.stopPlan(request, options: callOptions);
}