toJson method

Map<String, dynamic> toJson()

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