toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final currentSteps = this.currentSteps;
final kind = this.kind;
final newlyUnlocked = this.newlyUnlocked;
return {
'currentSteps': ?currentSteps,
'kind': ?kind,
'newlyUnlocked': ?newlyUnlocked,
};
}