toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final assertion = this.assertion;
final canonicalTarget = this.canonicalTarget;
final dataPreparation = this.dataPreparation;
final declaration = this.declaration;
final filePath = this.filePath;
final internalMetadata = this.internalMetadata;
final notebook = this.notebook;
final operations = this.operations;
final relation = this.relation;
final target = this.target;
return {
'assertion': ?assertion,
'canonicalTarget': ?canonicalTarget,
'dataPreparation': ?dataPreparation,
'declaration': ?declaration,
'filePath': ?filePath,
'internalMetadata': ?internalMetadata,
'notebook': ?notebook,
'operations': ?operations,
'relation': ?relation,
'target': ?target,
};
}