toJson method
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,
};
}