call method

  1. @override
PointCloud call({
  1. Header? header,
  2. List<Point32>? points,
  3. List<ChannelFloat32>? channels,
})

Implementation

@override
PointCloud call({
  Header? header,
  List<Point32>? points,
  List<ChannelFloat32>? channels,
}) => PointCloud(
header: header,
points: points,
channels: channels,
);