SignJwtResponse constructor
Implementation
factory SignJwtResponse({
$core.String? keyId,
$core.String? signedJwt,
}) {
final result = create();
if (keyId != null) result.keyId = keyId;
if (signedJwt != null) result.signedJwt = signedJwt;
return result;
}