get method

Future get()

Get the parameter from the ROS node using the /rosapi/get_param service.

Implementation

Future get() {
  final client = Service(
    ros: ros,
    name: '/rosapi/get_param',
    type: 'rosapi/GetParam',
  );
  return client.call({'name': name});
}