LidarCartesianPoint constructor
- double? x,
- double? y,
Implementation
factory LidarCartesianPoint({
$core.double? x,
$core.double? y,
}) {
final $result = create();
if (x != null) {
$result.x = x;
}
if (y != null) {
$result.y = y;
}
return $result;
}