toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final appStartTimeout = this.appStartTimeout;
final checkInterval = this.checkInterval;
final failureThreshold = this.failureThreshold;
final host = this.host;
final path = this.path;
final successThreshold = this.successThreshold;
final timeout = this.timeout;
return {
'appStartTimeout': ?appStartTimeout,
'checkInterval': ?checkInterval,
'failureThreshold': ?failureThreshold,
'host': ?host,
'path': ?path,
'successThreshold': ?successThreshold,
'timeout': ?timeout,
};
}