PrivateConfig.fromJson constructor

PrivateConfig.fromJson(
  1. Map json_
)

Implementation

PrivateConfig.fromJson(core.Map json_)
  : this(
      caPool: json_['caPool'] as core.String?,
      httpServiceAttachment: json_['httpServiceAttachment'] as core.String?,
      isPrivate: json_['isPrivate'] as core.bool?,
      pscAllowedProjects:
          (json_['pscAllowedProjects'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
      sshServiceAttachment: json_['sshServiceAttachment'] as core.String?,
    );