toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final generator = this.generator;
final inputParameters = this.inputParameters;
final outputParameter = this.outputParameter;
return {
'generator': ?generator,
'inputParameters': ?inputParameters,
'outputParameter': ?outputParameter,
};
}