LivenessCheck.fromJson constructor

LivenessCheck.fromJson(
  1. Map json_
)

Implementation

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