clearRestoreCredential method
Deletes the restore credential (restore key) from the device.
Call this when the user signs out. Android does not delete restore keys on its own, so without this call the user would be signed in again on the next launch. On platforms without restore credentials this is a no-op.
Implementation
@override
Future<void> clearRestoreCredential() async {
try {
await _platform.clearRestoreCredential();
} on PlatformException catch (e, stackTrace) {
_mapRestoreCredentialException(e, stackTrace);
}
}