revokeInstallations method
Implementation
@override
Future<void> revokeInstallations(
Uint8List signerPrivateKey, List<String> installationIds) async {
await _ensureInitialized();
await rust_signing.revokeInstallations(
signerPrivateKey: signerPrivateKey.toList(),
installationIds: installationIds,
);
}