revokeInstallations method

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

Implementation

@override
Future<void> revokeInstallations(Uint8List signerPrivateKey, List<String> installationIds) async {
  await methodChannel.invokeMethod('revokeInstallations', {
    'signerPrivateKey': signerPrivateKey,
    'installationIds': installationIds,
  });
}