toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final maxAttempts = this.maxAttempts;
final maxRetryDelay = this.maxRetryDelay;
final minRetryDelay = this.minRetryDelay;
return {
'maxAttempts': ?maxAttempts,
'maxRetryDelay': ?maxRetryDelay,
'minRetryDelay': ?minRetryDelay,
};
}