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 methodChannel.invokeMethod('staticRevokeInstallations', {
    'signerPrivateKey': signerPrivateKey,
    'inboxId': inboxId,
    'installationIds': installationIds,
  });
}