RotateAppSigningKeyResponse.fromJson constructor
RotateAppSigningKeyResponse.fromJson(
- 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,
);