SimpleSigningAttestationCheck.fromJson constructor

SimpleSigningAttestationCheck.fromJson(
  1. Map json_
)

Implementation

SimpleSigningAttestationCheck.fromJson(core.Map json_)
    : this(
        attestationAuthenticators:
            (json_['attestationAuthenticators'] as core.List?)
                ?.map((value) => AttestationAuthenticator.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList(),
        containerAnalysisAttestationProjects:
            (json_['containerAnalysisAttestationProjects'] as core.List?)
                ?.map((value) => value as core.String)
                .toList(),
      );