GRPCHealthCheck.fromJson constructor

GRPCHealthCheck.fromJson(
  1. Map json_
)

Implementation

GRPCHealthCheck.fromJson(core.Map json_)
    : this(
        grpcServiceName: json_['grpcServiceName'] as core.String?,
        port: json_['port'] as core.int?,
        portName: json_['portName'] as core.String?,
        portSpecification: json_['portSpecification'] as core.String?,
      );