call method

  1. @override
PointCloud2 call({
  1. Header? header,
  2. int? height,
  3. int? width,
  4. List<PointField>? fields,
  5. bool? is_bigendian,
  6. int? point_step,
  7. int? row_step,
  8. List<int>? data,
  9. bool? is_dense,
})

Implementation

@override
PointCloud2 call({
  Header? header,
  int? height,
  int? width,
  List<PointField>? fields,
  bool? is_bigendian,
  int? point_step,
  int? row_step,
  List<int>? data,
  bool? is_dense,
}) => PointCloud2(
header: header,
height: height,
width: width,
fields: fields,
is_bigendian: is_bigendian,
point_step: point_step,
row_step: row_step,
data: data,
is_dense: is_dense,
);