toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final client = this.client;
final clientVersion = this.clientVersion;
final labels = this.labels;
final parallelism = this.parallelism;
final taskCount = this.taskCount;
final template = this.template;
return {
'annotations': ?annotations,
'client': ?client,
'clientVersion': ?clientVersion,
'labels': ?labels,
'parallelism': ?parallelism,
'taskCount': ?taskCount,
'template': ?template,
};
}