RotateAppSigningKeyResponse.fromJson constructor

RotateAppSigningKeyResponse.fromJson(
  1. Map json_
)

Implementation

RotateAppSigningKeyResponse.fromJson(core.Map json_)
  : this(
      rotatedKeyCertificate: json_.containsKey('rotatedKeyCertificate')
          ? CertificateHashes.fromJson(
              json_['rotatedKeyCertificate']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
    );