toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final actuationOutput = this.actuationOutput;
final deploymentOutput = this.deploymentOutput;
final endTime = this.endTime;
final name = this.name;
final startTime = this.startTime;
final state = this.state;
return {
'actuationOutput': ?actuationOutput,
'deploymentOutput': ?deploymentOutput,
'endTime': ?endTime,
'name': ?name,
'startTime': ?startTime,
'state': ?state,
};
}