toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final executionErrors = this.executionErrors;
final framesReported = this.framesReported;
final totalRowsCount = this.totalRowsCount;
return {
'executionErrors': ?executionErrors,
'framesReported': ?framesReported,
'totalRowsCount': ?totalRowsCount,
};
}