toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final errorClass = this.errorClass;
  final errorRatio = this.errorRatio;
  final errorType = this.errorType;
  return {
    'errorClass': ?errorClass,
    'errorRatio': ?errorRatio,
    'errorType': ?errorType,
  };
}