toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final contents = this.contents;
  final errors = this.errors;
  final isPending = this.isPending;
  final isSitemapsIndex = this.isSitemapsIndex;
  final lastDownloaded = this.lastDownloaded;
  final lastSubmitted = this.lastSubmitted;
  final path = this.path;
  final type = this.type;
  final warnings = this.warnings;
  return {
    'contents': ?contents,
    'errors': ?errors,
    'isPending': ?isPending,
    'isSitemapsIndex': ?isSitemapsIndex,
    'lastDownloaded': ?lastDownloaded,
    'lastSubmitted': ?lastSubmitted,
    'path': ?path,
    'type': ?type,
    'warnings': ?warnings,
  };
}