toJson method

Map<String, dynamic> toJson()

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,
  };
}