toJson method
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,
};
}