KalmanFilter constructor

KalmanFilter(
  1. KalmanFilterPtr ptr, [
  2. bool attach = true
])

Implementation

KalmanFilter(cvg.KalmanFilterPtr ptr, [bool attach = true]) : super.fromPointer(ptr) {
  if (attach) {
    finalizer.attach(this, ptr.cast(), detach: this);
  }
}