ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse.fromJson constructor

ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse.fromJson(
  1. Map json_
)

Implementation

ShowEffectiveKeyAccessJustificationsEnrollmentConfigResponse.fromJson(
  core.Map json_,
) : this(
      externalConfig:
          json_.containsKey('externalConfig')
              ? KeyAccessJustificationsEnrollmentConfig.fromJson(
                json_['externalConfig']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      hardwareConfig:
          json_.containsKey('hardwareConfig')
              ? KeyAccessJustificationsEnrollmentConfig.fromJson(
                json_['hardwareConfig']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
      softwareConfig:
          json_.containsKey('softwareConfig')
              ? KeyAccessJustificationsEnrollmentConfig.fromJson(
                json_['softwareConfig']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );