HostConfig.fromJson constructor

HostConfig.fromJson(
  1. Map json_
)

Implementation

HostConfig.fromJson(core.Map json_)
  : this(
      api: json_['api'] as core.String?,
      gitHttp: json_['gitHttp'] as core.String?,
      gitSsh: json_['gitSsh'] as core.String?,
      html: json_['html'] as core.String?,
    );