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