staticRevokeInstallations method

  1. @override
Future<void> staticRevokeInstallations(
  1. Uint8List signerPrivateKey,
  2. String inboxId,
  3. List<String> installationIds
)
override

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,
  );
}