toJson method

Map<String, dynamic> toJson()

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,
  };
}