toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final leftRows = this.leftRows;
final outputRows = this.outputRows;
final rightRows = this.rightRows;
final stepIndex = this.stepIndex;
return {
'leftRows': ?leftRows,
'outputRows': ?outputRows,
'rightRows': ?rightRows,
'stepIndex': ?stepIndex,
};
}