init method
Initializes the lidar view mode.
Implementation
void init() {
_subscription = models.messages.stream.onMessage<LidarPointCloud>(
name: LidarPointCloud().messageName,
constructor: LidarPointCloud.fromBuffer,
callback: handleData,
);
}