toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final failedCount = this.failedCount;
  final nocaptchaCount = this.nocaptchaCount;
  final pageloadCount = this.pageloadCount;
  final passedCount = this.passedCount;
  return {
    'failedCount': ?failedCount,
    'nocaptchaCount': ?nocaptchaCount,
    'pageloadCount': ?pageloadCount,
    'passedCount': ?passedCount,
  };
}