deleteCredential static method

Future<String> deleteCredential(
  1. String handle
)

Delete a Credential by handle.

Warning: deleting a Credential is destructive and will remove everything from the device. If no other device contains the credential then the user will need to complete a recovery in order to log in again on this device.

handle is the credential handle uniquely identifying the Credential to delete.

Implementation

static Future<String> deleteCredential(String handle) async {
  final String handleResult = await _channel.invokeMethod('deleteCredential', {
    'handle': handle,
  });
  return handleResult;
}