toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final errorCode = this.errorCode;
  final errorCount = this.errorCount;
  final errorLogEntries = this.errorLogEntries;
  return {
    'errorCode': ?errorCode,
    'errorCount': ?errorCount,
    'errorLogEntries': ?errorLogEntries,
  };
}