toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final executionId = this.executionId;
final nextLineNumber = this.nextLineNumber;
final pod = this.pod;
final podNamespace = this.podNamespace;
return {
'executionId': ?executionId,
'nextLineNumber': ?nextLineNumber,
'pod': ?pod,
'podNamespace': ?podNamespace,
};
}