toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final baseTable = this.baseTable;
final indexId = this.indexId;
final postIndexPruningParallelInputCount =
this.postIndexPruningParallelInputCount;
final preIndexPruningParallelInputCount =
this.preIndexPruningParallelInputCount;
return {
'baseTable': ?baseTable,
'indexId': ?indexId,
'postIndexPruningParallelInputCount': ?postIndexPruningParallelInputCount,
'preIndexPruningParallelInputCount': ?preIndexPruningParallelInputCount,
};
}