toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final archiveUris = this.archiveUris;
  final fileUris = this.fileUris;
  final infrastructureSpec = this.infrastructureSpec;
  final notebook = this.notebook;
  return {
    'archiveUris': ?archiveUris,
    'fileUris': ?fileUris,
    'infrastructureSpec': ?infrastructureSpec,
    'notebook': ?notebook,
  };
}