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