toJson method

Map<String, dynamic> toJson()

Implementation

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