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