stop method
override
Stop all motion of the arm. It is assumed that the arm stops immediately.
await myArm.stop();
For more information, see Arm component.
Implementation
@override
Future<void> stop({Map<String, dynamic>? extra}) async {
final request = StopRequest()
..name = name
..extra = extra?.toStruct() ?? Struct();
await client.stop(request);
}