toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final failureThreshold = this.failureThreshold;
final grpc = this.grpc;
final httpGet = this.httpGet;
final initialDelaySeconds = this.initialDelaySeconds;
final periodSeconds = this.periodSeconds;
final tcpSocket = this.tcpSocket;
final timeoutSeconds = this.timeoutSeconds;
return {
'failureThreshold': ?failureThreshold,
'grpc': ?grpc,
'httpGet': ?httpGet,
'initialDelaySeconds': ?initialDelaySeconds,
'periodSeconds': ?periodSeconds,
'tcpSocket': ?tcpSocket,
'timeoutSeconds': ?timeoutSeconds,
};
}