Diagnostics constructor

Diagnostics({
  1. required List<double> acfVals,
  2. required List<double> pacfVals,
  3. required LjungBoxResult lb,
  4. required JBResult jb,
  5. required bool arStationary,
  6. required bool maInvertible,
})

Implementation

Diagnostics({
  required this.acfVals,
  required this.pacfVals,
  required this.lb,
  required this.jb,
  required this.arStationary,
  required this.maInvertible,
});