toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final leftSchemaPaths = this.leftSchemaPaths;
final rightSchemaPaths = this.rightSchemaPaths;
final sources = this.sources;
final type = this.type;
return {
'leftSchemaPaths': ?leftSchemaPaths,
'rightSchemaPaths': ?rightSchemaPaths,
'sources': ?sources,
'type': ?type,
};
}