toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attempt = this.attempt;
final state = this.state;
final stateDesc = this.stateDesc;
final wait = this.wait;
return {
'attempt': ?attempt,
'state': ?state,
'stateDesc': ?stateDesc,
'wait': ?wait,
};
}