ReadinessCheck.fromJson constructor

ReadinessCheck.fromJson(
  1. Map json_
)

Implementation

ReadinessCheck.fromJson(core.Map json_)
    : this(
        appStartTimeout: json_['appStartTimeout'] as core.String?,
        checkInterval: json_['checkInterval'] as core.String?,
        failureThreshold: json_['failureThreshold'] as core.int?,
        host: json_['host'] as core.String?,
        path: json_['path'] as core.String?,
        successThreshold: json_['successThreshold'] as core.int?,
        timeout: json_['timeout'] as core.String?,
      );