toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final arguments = this.arguments;
final definedInMaterial = this.definedInMaterial;
final entryPoint = this.entryPoint;
final environment = this.environment;
final type = this.type;
return {
'arguments': ?arguments,
'definedInMaterial': ?definedInMaterial,
'entryPoint': ?entryPoint,
'environment': ?environment,
'type': ?type,
};
}