toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endTimestamp = this.endTimestamp;
final exception = this.exception;
final isActive = this.isActive;
final name = this.name;
final runId = this.runId;
final startTimestamp = this.startTimestamp;
final streamingQueryId = this.streamingQueryId;
return {
'endTimestamp': ?endTimestamp,
'exception': ?exception,
'isActive': ?isActive,
'name': ?name,
'runId': ?runId,
'startTimestamp': ?startTimestamp,
'streamingQueryId': ?streamingQueryId,
};
}