toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final args = this.args;
final dir = this.dir;
final env = this.env;
final id = this.id;
final name = this.name;
final waitFor = this.waitFor;
return {
'args': ?args,
'dir': ?dir,
'env': ?env,
'id': ?id,
'name': ?name,
'waitFor': ?waitFor,
};
}