toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final autoRegressiveCoefficients = this.autoRegressiveCoefficients;
  final interceptCoefficient = this.interceptCoefficient;
  final movingAverageCoefficients = this.movingAverageCoefficients;
  return {
    'autoRegressiveCoefficients': ?autoRegressiveCoefficients,
    'interceptCoefficient': ?interceptCoefficient,
    'movingAverageCoefficients': ?movingAverageCoefficients,
  };
}