Ros constructor

Ros({
  1. dynamic url,
})

Initializes the _statusController as a broadcast. The url of the ROS node can be optionally specified at this point.

Implementation

Ros({this.url}) {
  _statusController = StreamController<Status>.broadcast();
}