toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final performanceGoalAmountMicros = this.performanceGoalAmountMicros;
final performanceGoalPercentageMicros =
this.performanceGoalPercentageMicros;
final performanceGoalString = this.performanceGoalString;
final performanceGoalType = this.performanceGoalType;
return {
'performanceGoalAmountMicros': ?performanceGoalAmountMicros,
'performanceGoalPercentageMicros': ?performanceGoalPercentageMicros,
'performanceGoalString': ?performanceGoalString,
'performanceGoalType': ?performanceGoalType,
};
}