toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final biEngineReasons = this.biEngineReasons;
final highCardinalityJoins = this.highCardinalityJoins;
final insufficientShuffleQuota = this.insufficientShuffleQuota;
final partitionSkew = this.partitionSkew;
final slotContention = this.slotContention;
final stageId = this.stageId;
return {
'biEngineReasons': ?biEngineReasons,
'highCardinalityJoins': ?highCardinalityJoins,
'insufficientShuffleQuota': ?insufficientShuffleQuota,
'partitionSkew': ?partitionSkew,
'slotContention': ?slotContention,
'stageId': ?stageId,
};
}