set method
Set the value
of the parameter.
Implementation
Future set(dynamic value) {
final client = Service(
ros: ros,
name: '/rosapi/set_param',
type: 'rosapi/SetParam',
);
return client.call({
'name': name,
'value': value,
});
}