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